| 33 | typedef std::shared_ptr<tcp_connection> pointer; |
| 34 | |
| 35 | static pointer create(boost::asio::io_context& io_context) |
| 36 | { |
| 37 | return pointer(new tcp_connection(io_context)); |
| 38 | } |
| 39 | |
| 40 | tcp::socket& socket() |
| 41 | { |
nothing calls this directly
no outgoing calls
no test coverage detected