Construct an acceptor without opening it.
explicit basic_socket_acceptor( asio::io_service & io_service); » more...
Construct an open acceptor.
basic_socket_acceptor( asio::io_service & io_service, const protocol_type & protocol); » more...
Construct an acceptor opened on the given endpoint.
basic_socket_acceptor( asio::io_service & io_service, const endpoint_type & endpoint, bool reuse_addr = true); » more...
Construct a basic_socket_acceptor
on an existing
native acceptor.
basic_socket_acceptor( asio::io_service & io_service, 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, typename SocketAcceptorService1> basic_socket_acceptor( basic_socket_acceptor< Protocol1, SocketAcceptorService1 > && other, typename enable_if< is_convertible< Protocol1, Protocol >::value >::type * = 0); » more...