Construct a basic_socket without opening it. * This constructor creates a socket without opening it. * * @param ex The I/O executor that the socket will use, by default, to * dispatch handlers for any asynchronous operations performed on the socket. */
| 111 | * dispatch handlers for any asynchronous operations performed on the socket. |
| 112 | */ |
| 113 | explicit basic_socket(const executor_type& ex) |
| 114 | : impl_(0, ex) |
| 115 | { |
| 116 | } |
| 117 | |
| 118 | /// Construct a basic_socket without opening it. |
| 119 | /** |
no test coverage detected