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

Function async_write_handler

test/write.cpp:2154–2160  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2152}
2153
2154void async_write_handler(const boost::system::error_code& e,
2155 size_t bytes_transferred, size_t expected_bytes_transferred, bool* called)
2156{
2157 *called = true;
2158 BOOST_ASIO_CHECK(!e);
2159 BOOST_ASIO_CHECK(bytes_transferred == expected_bytes_transferred);
2160}
2161
2162void test_3_arg_const_buffer_async_write()
2163{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected