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

Function async_read_handler

test/read_until.cpp:662–669  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

660}
661
662void async_read_handler(
663 const boost::system::error_code& err, boost::system::error_code* err_out,
664 std::size_t bytes_transferred, std::size_t* bytes_out, bool* called)
665{
666 *err_out = err;
667 *bytes_out = bytes_transferred;
668 *called = true;
669}
670
671void test_dynamic_string_async_read_until_char()
672{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected