| 2926 | } |
| 2927 | |
| 2928 | void async_write_handler(const boost::system::error_code& e, |
| 2929 | size_t bytes_transferred, size_t expected_bytes_transferred, bool* called) |
| 2930 | { |
| 2931 | *called = true; |
| 2932 | BOOST_ASIO_CHECK(!e); |
| 2933 | BOOST_ASIO_CHECK(bytes_transferred == expected_bytes_transferred); |
| 2934 | } |
| 2935 | |
| 2936 | void test_4_arg_const_buffer_async_write_at() |
| 2937 | { |
nothing calls this directly
no outgoing calls
no test coverage detected