asio C++ library

PrevUpHomeNext
basic_socket::local_endpoint (2 of 2 overloads)

Get the local endpoint of the socket.

endpoint_type local_endpoint(
    asio::error_code & ec) const;

This function is used to obtain the locally bound endpoint of the socket.

Parameters

ec

Set to indicate what error occurred, if any.

Return Value

An object that represents the local endpoint of the socket. Returns a default-constructed endpoint object if an error occurred.

Example
asio::ip::tcp::socket socket(io_context);
...
asio::error_code ec;
asio::ip::tcp::endpoint endpoint = socket.local_endpoint(ec);
if (ec)
{
  // An error occurred.
}

PrevUpHomeNext