Пример #1
0
void TcpClient::Connect(const std::string& ip, const std::string& port)
{
    GetIoService().post(std::bind(&TcpClient::RealConnect , this , ip , port )) ;
}
Пример #2
0
void Server::Stop()
{
	GetIoService().stop();
	acceptor_.close();
}