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. */
| 120 | * dispatch handlers for any asynchronous operations performed on the socket. |
| 121 | */ |
| 122 | explicit basic_socket(const executor_type& ex) |
| 123 | : impl_(0, ex) |
| 124 | { |
| 125 | } |
| 126 | |
| 127 | /// Construct a basic_socket without opening it. |
| 128 | /** |
no test coverage detected