Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
basic_socket_acceptor::open (2 of 2 overloads)

Open the acceptor using the specified protocol.

boost::system::error_code open(
    const protocol_type & protocol,
    boost::system::error_code & ec);

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.

ec

Set to indicate what error occurred, if any.

Example
boost::asio::ip::tcp::acceptor acceptor(io_service);
boost::system::error_code ec;
acceptor.open(boost::asio::ip::tcp::v4(), ec);
if (ec)
{
  // An error occurred.
}

PrevUpHomeNext