| 16 | namespace server3 { |
| 17 | |
| 18 | connection::connection(boost::asio::ip::tcp::socket socket, |
| 19 | request_handler& handler) |
| 20 | : socket_(std::move(socket)), |
| 21 | request_handler_(handler) |
| 22 | { |
| 23 | } |
| 24 | |
| 25 | void connection::start() |
| 26 | { |
nothing calls this directly
no outgoing calls
no test coverage detected