Hi,[Boost-users][asio] Removing server socket from service I have one thread how runs io_service.
I have 2 servers (tcp) ports with all corresponded acceptor and bunch of sockets connected to both ports.I am looking into the way to stop just one server but still run the other one.
I have implemented a "hard" way to stop server: remove acceptor, cancel/close sockets, that will trigger all read/write asynchronous callbacks, wait till they all done.