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 an older version of Boost and was released in 2017. The current version is 1.91.0.
Construct an acceptor without opening it.
explicit basic_socket_acceptor( boost::asio::io_context & io_context); » more...
Construct an open acceptor.
basic_socket_acceptor( boost::asio::io_context & io_context, const protocol_type & protocol); » more...
Construct an acceptor opened on the given endpoint.
basic_socket_acceptor( boost::asio::io_context & io_context, const endpoint_type & endpoint, bool reuse_addr = true); » more...
Construct a basic_socket_acceptor
on an existing native acceptor.
basic_socket_acceptor( boost::asio::io_context & io_context, const protocol_type & protocol, const native_handle_type & native_acceptor); » more...
Move-construct a basic_socket_acceptor
from another.
basic_socket_acceptor( basic_socket_acceptor && other); » more...
Move-construct a basic_socket_acceptor
from an acceptor of another protocol type.
template<
typename Protocol1>
basic_socket_acceptor(
basic_socket_acceptor< Protocol1 > && other,
typename enable_if< is_convertible< Protocol1, Protocol >::value >::type * = 0);
» more...