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 2019. The current version is 1.89.0.
template<
typename Protocol1,
typename Executor1,
typename AcceptHandler = DEFAULT>
DEDUCED async_accept(
basic_socket< Protocol1, Executor1 > & peer,
AcceptHandler && handler = DEFAULT,
typename enable_if< is_convertible< Protocol, Protocol1 >::value >::type * = 0);
» more...
template<
typename Executor1,
typename AcceptHandler = DEFAULT>
DEDUCED async_accept(
basic_socket< protocol_type, Executor1 > & peer,
endpoint_type & peer_endpoint,
AcceptHandler && handler = DEFAULT);
» more...
template<
typename MoveAcceptHandler = DEFAULT>
DEDUCED async_accept(
MoveAcceptHandler && handler = DEFAULT);
» more...
template<
typename Executor1,
typename MoveAcceptHandler = DEFAULT>
DEDUCED async_accept(
const Executor1 & ex,
MoveAcceptHandler && handler = DEFAULT,
typename enable_if< is_executor< Executor1 >::value >::type * = 0);
» more...
template<
typename ExecutionContext,
typename MoveAcceptHandler = DEFAULT>
DEDUCED async_accept(
ExecutionContext & context,
MoveAcceptHandler && handler = DEFAULT,
typename enable_if< is_convertible< ExecutionContext &, execution_context & >::value >::type * = 0);
» more...
template<
typename MoveAcceptHandler = DEFAULT>
DEDUCED async_accept(
endpoint_type & peer_endpoint,
MoveAcceptHandler && handler = DEFAULT);
» more...
template<
typename Executor1,
typename MoveAcceptHandler = DEFAULT>
DEDUCED async_accept(
const Executor1 & ex,
endpoint_type & peer_endpoint,
MoveAcceptHandler && handler = DEFAULT,
typename enable_if< is_executor< Executor1 >::value >::type * = 0);
» more...
template<
typename ExecutionContext,
typename MoveAcceptHandler = DEFAULT>
DEDUCED async_accept(
ExecutionContext & context,
endpoint_type & peer_endpoint,
MoveAcceptHandler && handler = DEFAULT,
typename enable_if< is_convertible< ExecutionContext &, execution_context & >::value >::type * = 0);
» more...