Home | History | Annotate | Download | only in asio

Lines Matching defs:listen

46  * acceptor.listen();
71 * This constructor creates an acceptor without opening it to listen for new
107 * This constructor creates an acceptor and automatically opens it to listen
115 * will listen for new connections.
129 * acceptor.listen(listen_backlog);
148 this->get_service().listen(this->get_implementation(),
150 asio::detail::throw_error(ec, "listen");
403 /// Place the acceptor into the state where it will listen for new
413 void listen(int backlog = socket_base::max_connections)
416 this->get_service().listen(this->get_implementation(), backlog, ec);
417 asio::detail::throw_error(ec, "listen");
420 /// Place the acceptor into the state where it will listen for new
435 * acceptor.listen(asio::socket_base::max_connections, ec);
442 asio::error_code listen(int backlog, asio::error_code& ec)
444 return this->get_service().listen(this->get_implementation(), backlog, ec);