使用Boost.asio进行socket编程,实际运行过程中,会出现如下错误,导致程序异常退出:
remote_endpoint: Transport endpoint is not connected
Disconnected from
其中第二行debug信息是我在程序中添加的,当需要关闭连接时打印,但没有像预期的那样出现远端IP地址,这说明是在执行该代码时出现异常,代码如下:
std::cout << "Disconnected from ";
std::cout << m_socket.remote_endpoint().address();
std::cout << std::endl;
m_socket.close();
出现异常应该是远端刚连接上立刻断开,导致无法获取到remote_endpoint。
加入异常处理:
try {
std::cout << "Disconnected from ";
std::cout << m_socket.remote_endpoint().address();
std::cout << std::endl;
} catch
(boost::system::system_error &ec) {
std::cerr << "Disconnected " << ec.what() << std::endl;
}
m_socket.close();
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/25432352/viewspace-736500/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/25432352/viewspace-736500/