Menu

#60 altenatilve connection host/port not work

pending
nobody
None
5
2012-03-04
2010-10-28
No

This is an obvious bug from the source code of quickfix-1.13.3, please check SocketInitiator::getHost() function as follows.

std::stringstream portStream;
std::string portString = portStream.str();
portStream << SOCKET_CONNECT_PORT << num;

The correct logic should be,
std::stringstream portStream;
portStream << SOCKET_CONNECT_PORT << num;
std::string portString = portStream.str();

Discussion

  • mehmet

    mehmet - 2011-02-22

    İf you want to do failover mechanism in your application by using quickfix alternate socket connection host and port, above issue should be resolved. Right now failover mechanism by using quickfix alternate socket connection host and port does not work.
    By the way, we try above solution and it seems worked.

     
  • Oren Miller

    Oren Miller - 2012-03-04

    This should be fixed in the next release.

     
  • Oren Miller

    Oren Miller - 2012-03-04
    • status: open --> pending
     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.