如何获取boost :: asio :: ssl :: stream类型的套接字的远程端点的IP地址。我想像这样打印对等IP - 但它不起作用
std::cout << "Peer IP: " << socket_.remote_endpoint().address().to_string()
答案 0 :(得分:0)
我明白了 它应该是 std :: cout&lt;&lt; “对等IP:”&lt;&lt; socket_.lowest_layer()。remote_endpoint()。address()。to_string()&lt;&lt;的std :: ENDL;