Networking TS

PrevUpHomeNext
basic_socket_acceptor::accept (1 of 8 overloads)

Accept a new connection.

Protocol::socket accept();

This function is used to accept a new connection from a peer. The function call will block until a new connection has been accepted successfully or an error occurs.

This overload requires that the Protocol template parameter satisfy the AcceptableProtocol type requirements.

Return Value

A socket object representing the newly accepted connection.

Exceptions

std::system_error

Thrown on failure.

Example
std::experimental::net::ip::tcp::acceptor acceptor(io_context);
...
std::experimental::net::ip::tcp::socket socket(acceptor.accept());

PrevUpHomeNext