| 1253 | BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code)) |
| 1254 | WaitToken = default_completion_token_t<executor_type>> |
| 1255 | auto async_wait(wait_type w, |
| 1256 | WaitToken&& token = default_completion_token_t<executor_type>()) |
| 1257 | -> decltype( |
| 1258 | async_initiate<WaitToken, void (boost::system::error_code)>( |
| 1259 | declval<initiate_async_wait>(), token, w)) |
| 1260 | { |
| 1261 | return async_initiate<WaitToken, void (boost::system::error_code)>( |
| 1262 | initiate_async_wait(this), token, w); |
| 1263 | } |
| 1264 | |
| 1265 | #if !defined(BOOST_ASIO_NO_EXTENSIONS) |
| 1266 | /// Accept a new connection. |
nothing calls this directly
no test coverage detected