| 85 | } |
| 86 | |
| 87 | void server::do_await_stop() |
| 88 | { |
| 89 | signals_.async_wait( |
| 90 | [this](boost::system::error_code /*ec*/, int /*signo*/) |
| 91 | { |
| 92 | io_context_.stop(); |
| 93 | }); |
| 94 | } |
| 95 | |
| 96 | } // namespace server3 |
| 97 | } // namespace http |
nothing calls this directly
no test coverage detected