| 91 | |
| 92 | private: |
| 93 | connection(boost::asio::io_context& io_context, const std::string& filename) |
| 94 | : socket_(io_context), |
| 95 | filename_(filename), |
| 96 | file_(io_context) |
| 97 | { |
| 98 | } |
| 99 | |
| 100 | void handle_write(const boost::system::error_code& /*error*/, |
| 101 | size_t /*bytes_transferred*/) |
nothing calls this directly
no outgoing calls
no test coverage detected