MCPcopy Create free account
hub / github.com/cinder/Cinder / basic_socket_acceptor

Function basic_socket_acceptor

include/asio/basic_socket_acceptor.hpp:127–130  ·  view source on GitHub ↗

Construct an acceptor without opening it. * This constructor creates an acceptor without opening it to listen for new * connections. The open() function must be called before the acceptor can * accept new socket connections. * * @param ex The I/O executor that the acceptor will use, by default, to * dispatch handlers for any asynchronous operations performed on the * acceptor.

Source from the content-addressed store, hash-verified

125 * acceptor.
126 */
127 explicit basic_socket_acceptor(const executor_type& ex)
128 : impl_(0, ex)
129 {
130 }
131
132 /// Construct an acceptor without opening it.
133 /**

Callers 1

Calls 7

throw_errorFunction · 0.85
openMethod · 0.45
protocolMethod · 0.45
set_optionMethod · 0.45
bindMethod · 0.45
listenMethod · 0.45
assignMethod · 0.45

Tested by

no test coverage detected