Inherited from basic_socket.
Get the remote endpoint of the socket.
endpoint_type remote_endpoint( asio::error_code & ec) const;
This function is used to obtain the remote endpoint of the socket.
Set to indicate what error occurred, if any.
An object that represents the remote endpoint of the socket. Returns a default-constructed endpoint object if an error occurred.
asio::ip::tcp::socket socket(my_context); ... asio::error_code ec; asio::ip::tcp::endpoint endpoint = socket.remote_endpoint(ec); if (ec) { // An error occurred. }