| 170 | { |
| 171 | public: |
| 172 | chat_server(boost::asio::io_context& io_context, |
| 173 | const tcp::endpoint& endpoint) |
| 174 | : acceptor_(io_context, endpoint) |
| 175 | { |
| 176 | do_accept(); |
| 177 | } |
| 178 | |
| 179 | private: |
| 180 | void do_accept() |
nothing calls this directly
no outgoing calls
no test coverage detected