Networking TS

PrevUpHomeNext
basic_socket_acceptor::open (1 of 2 overloads)

Open the acceptor using the specified protocol.

void open(
    const protocol_type & protocol = protocol_type());

This function opens the socket acceptor so that it will use the specified protocol.

Parameters

protocol

An object specifying which protocol is to be used.

Exceptions

std::system_error

Thrown on failure.

Example
std::experimental::net::ip::tcp::acceptor acceptor(io_context);
acceptor.open(std::experimental::net::ip::tcp::v4());

PrevUpHomeNext