OnCallbackConnectionCreated destroys server session
Posted: Wed Sep 17, 2014 12:48 pm
I'm trying to extend the "Identifying Clients" in the callback example http://www.deltavsoft.com/doc/rcf_user_ ... ng_clients
My goal is to remove the RcfClient from the map when the client disconnects.
So I tried adding
The following happens and goes wrong at step 4:
1. A callback connection is initiated by the client
2. onCallbackConnectionCreated is called
3. The method _OnCallbackConnectionDestroyed is set as callback for when the session is destroyed
4. !!! => Immediately afterwards _OnCallbackConnectionDestroyed is called <= !!!
5. The client does receive callbacks!
6. The client process is closed
7. The server crashes with the following message:
terminate called after throwing an instance of 'RCF::Exception'
what(): [98: DNS lookup of network address failed, for name "%1". OS: 0 - Success][1: Operating system][0: Success][What: ][Context: ./src/RCF/TcpClientTransport.cpp:118]
Aborted
What's the solution to this problem?
Thanks again for your help.
My goal is to remove the RcfClient from the map when the client disconnects.
So I tried adding
Code: Select all
sessionPtr->setOnDestroyCallback (std::bind (_OnCallbackConnectionDestroyed, args::_1));
1. A callback connection is initiated by the client
2. onCallbackConnectionCreated is called
3. The method _OnCallbackConnectionDestroyed is set as callback for when the session is destroyed
4. !!! => Immediately afterwards _OnCallbackConnectionDestroyed is called <= !!!
5. The client does receive callbacks!
6. The client process is closed
7. The server crashes with the following message:
terminate called after throwing an instance of 'RCF::Exception'
what(): [98: DNS lookup of network address failed, for name "%1". OS: 0 - Success][1: Operating system][0: Success][What: ][Context: ./src/RCF/TcpClientTransport.cpp:118]
Aborted
What's the solution to this problem?
Thanks again for your help.