Tagged Questions
1
vote
2answers
89 views
C/C++ High-frequency messaging program
Recently I have come across the POCO and ACE networking frameworks, along with Boost which I already knew about.
My question is, are these libraries any faster for passing messages than just a ...
1
vote
1answer
117 views
Using ACE_Service_Object
I'm trying to use the ACE_Service_Object or the ACE_Shared_Object. I'm not sure which one is applicable. I'm trying to encapsulate some functionality in a DLL so a consumer of the DLL would open the ...
0
votes
2answers
274 views
Is select function internaly call tcp connect?
Code Sinnpet:
int CreateaTCPSocket()
{
int iSockID = ACE_OS::socket(......);
ACE_OS::set_flags(iSockID,O_NONBLOCK);
ACE_OS::bind();
if ...