| 2152 | } |
| 2153 | |
| 2154 | void async_write_handler(const boost::system::error_code& e, |
| 2155 | size_t bytes_transferred, size_t expected_bytes_transferred, bool* called) |
| 2156 | { |
| 2157 | *called = true; |
| 2158 | BOOST_ASIO_CHECK(!e); |
| 2159 | BOOST_ASIO_CHECK(bytes_transferred == expected_bytes_transferred); |
| 2160 | } |
| 2161 | |
| 2162 | void test_3_arg_const_buffer_async_write() |
| 2163 | { |
nothing calls this directly
no outgoing calls
no test coverage detected