| 3415 | } |
| 3416 | |
| 3417 | void async_read_handler(const boost::system::error_code& e, |
| 3418 | size_t bytes_transferred, size_t expected_bytes_transferred, bool* called) |
| 3419 | { |
| 3420 | *called = true; |
| 3421 | BOOST_ASIO_CHECK(!e); |
| 3422 | BOOST_ASIO_CHECK(bytes_transferred == expected_bytes_transferred); |
| 3423 | } |
| 3424 | |
| 3425 | void test_4_arg_mutable_buffer_async_read_at() |
| 3426 | { |
nothing calls this directly
no outgoing calls
no test coverage detected