MCPcopy Create free account
hub / github.com/boostorg/asio / async_read_handler

Function async_read_handler

test/read_at.cpp:3417–3423  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3415}
3416
3417void 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
3425void test_4_arg_mutable_buffer_async_read_at()
3426{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected