asio C++ library

PrevUpHomeNext

basic_socket_acceptor::async_accept

Start an asynchronous accept.

template<
    typename Protocol1,
    typename Executor1,
    typename AcceptHandler = DEFAULT>
DEDUCED async_accept(
    basic_socket< Protocol1, Executor1 > & peer,
    AcceptHandler && handler = DEFAULT,
    typename constraint< 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 constraint< is_executor< Executor1 >::value||execution::is_executor< Executor1 >::value >::type  = 0);
  » more...

template<
    typename ExecutionContext,
    typename MoveAcceptHandler = DEFAULT>
DEDUCED async_accept(
    ExecutionContext & context,
    MoveAcceptHandler && handler = DEFAULT,
    typename constraint< 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 constraint< is_executor< Executor1 >::value||execution::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 constraint< is_convertible< ExecutionContext &, execution_context & >::value >::type  = 0);
  » more...

PrevUpHomeNext