I don't have any code to provide, just need an advice.
I am using Poco::Net as network library in my project.
The task I am trying to resolve: I have up to 4 client connections in single 'game session'.
I need:
- Read from any of them if data is available.
- Send data via multicast.
- Possibly use 1 thread for accepting connections, and 1 thread for interaction with them.
- If TCP connection was broken, I need to store data that should be sent to this client, and when he reconnects back (new TCP Socket is created, and I identify clients by they unique key that they send in first packet), and re-sent everything I stored during they internet connection issues.
I have read about Poco::Net::SocketReactor/Poco::Net::SocketAcceptor combination, but its unclear to me how can I get access to Handlers from outside them, since Reactor does not provide an API to get them (I want to integrate packets validation on receive, not at processing stage). Also, since Handler is created for every new connection, I can't place "re-sent on disconnect" logic inside Handler, it should be placed outside.
So, it looks to me that I can't use Reactor/Acceptor pattern, and have to deal with raw StreamSocket's. But how to do it in single thread, without busy-loop?
Also, if you know how to do it correctly using other libraries (boost::asio for e.g.), please recommend something.