| 477 | // Accept a new connection. |
| 478 | template <typename Socket> |
| 479 | boost::system::error_code accept(implementation_type&, |
| 480 | Socket&, endpoint_type*, boost::system::error_code& ec) |
| 481 | { |
| 482 | ec = boost::asio::error::operation_not_supported; |
| 483 | return ec; |
| 484 | } |
| 485 | |
| 486 | // Start an asynchronous accept. The peer and peer_endpoint objects |
| 487 | // must be valid until the accept's handler is invoked. |