Questions tagged [fix8]

C++ framework for FIX protocol applications

Fix8 is a complete C++ FIX framework, with client/server session and connection classes (including SSL); support for the standard FIX field types; FIX printer, async logger, async message persister and XML configuration classes. Fix8 can easily be extended and customized.

Website: http://www.fix8.org

3 questions
1
vote
1 answer

Error when building FIX 8

Using gcc 7.1 [idf fix8]$ gcc -v Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/opt/rh/devtoolset-7/root/usr/libexec/gcc/x86_64-redhat-linux/7/lto-wrapper Target: x86_64-redhat-linux Configured with: ../configure --enable-bootstrap…
Ivan
  • 7,448
  • 14
  • 69
  • 134
0
votes
0 answers

Does FIX8 library provide timeout mechanism for connection attempt?

I have FIX8::Session::start(...) method in my C++ code, which blocks the program forever in case the endpoint is unavailable at the moment. Is there a built-in FIX8 way to set timeout on connection attemps? I want to move forward if connection is…
Ivan S
  • 11
  • 2
0
votes
0 answers

Not able to store data in a private member variable from a const member function - FIX8 c++

This is my header : class my_router_client : public FIX8::my::mine_Router { private: mine_session_client& _session; mutable std::vector vSymbolList; public: my_router_client(mine_session_client& session) :…
TheNormalGuy
  • 371
  • 3
  • 16