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

Function async_read_handler

test/read.cpp:2456–2462  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2454}
2455
2456void async_read_handler(const boost::system::error_code& e,
2457 size_t bytes_transferred, size_t expected_bytes_transferred, bool* called)
2458{
2459 *called = true;
2460 BOOST_ASIO_CHECK(!e);
2461 BOOST_ASIO_CHECK(bytes_transferred == expected_bytes_transferred);
2462}
2463
2464void test_3_arg_mutable_buffer_async_read()
2465{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected