| 63 | |
| 64 | template <typename Const_Buffers, typename Handler> |
| 65 | void async_write(const Const_Buffers&, Handler handler) |
| 66 | { |
| 67 | boost::system::error_code error; |
| 68 | boost::asio::post(io_context_, |
| 69 | boost::asio::detail::bind_handler(handler, error, 0)); |
| 70 | } |
| 71 | |
| 72 | template <typename Mutable_Buffers> |
| 73 | size_t read(const Mutable_Buffers&) |
nothing calls this directly
no test coverage detected