Networking TS

PrevUpHomeNext
basic_stream_socket::bind (1 of 2 overloads)

Inherited from basic_socket.

Bind the socket to the given local endpoint.

void bind(
    const endpoint_type & endpoint);

This function binds the socket to the specified endpoint on the local machine.

Parameters

endpoint

An endpoint on the local machine to which the socket will be bound.

Exceptions

std::system_error

Thrown on failure.

Example
std::experimental::net::ip::tcp::socket socket(io_context);
socket.open(std::experimental::net::ip::tcp::v4());
socket.bind(std::experimental::net::ip::tcp::endpoint(
      std::experimental::net::ip::tcp::v4(), 12345));

PrevUpHomeNext