| 74 | } |
| 75 | |
| 76 | void server::do_await_stop() |
| 77 | { |
| 78 | signals_.async_wait( |
| 79 | [this](boost::system::error_code /*ec*/, int /*signo*/) |
| 80 | { |
| 81 | io_context_pool_.stop(); |
| 82 | }); |
| 83 | } |
| 84 | |
| 85 | } // namespace server2 |
| 86 | } // namespace http |
nothing calls this directly
no test coverage detected