| 65 | typedef std::shared_ptr<connection> pointer; |
| 66 | |
| 67 | static pointer create(boost::asio::io_context& io_context, |
| 68 | const std::string& filename) |
| 69 | { |
| 70 | return pointer(new connection(io_context, filename)); |
| 71 | } |
| 72 | |
| 73 | tcp_socket& socket() |
| 74 | { |
nothing calls this directly
no outgoing calls
no test coverage detected