Networking TS

PrevUpHomeNext
basic_socket_acceptor::accept (8 of 8 overloads)

Accept a new connection.

Protocol::socket accept(
    std::experimental::net::v1::io_context & io_context,
    endpoint_type & peer_endpoint,
    std::error_code & ec);

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.

Parameters

io_context

The io_context object to be used for the newly accepted socket.

peer_endpoint

An endpoint object into which the endpoint of the remote peer will be written.

ec

Set to indicate what error occurred, if any.

Return Value

On success, a socket object representing the newly accepted connection. On error, a socket object where is_open() is false.

Example
std::experimental::net::ip::tcp::acceptor acceptor(io_context);
...
std::experimental::net::ip::tcp::endpoint endpoint;
std::experimental::net::ip::tcp::socket socket(
    acceptor.accept(io_context2, endpoint, ec));
if (ec)
{
  // An error occurred.
}

PrevUpHomeNext