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

Function async_write_handler

test/write_at.cpp:2928–2934  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2926}
2927
2928void 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
2936void test_4_arg_const_buffer_async_write_at()
2937{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected