| 56 | |
| 57 | template<class ConstBufferSequence> |
| 58 | void |
| 59 | operator()( |
| 60 | error_code& ec, |
| 61 | ConstBufferSequence const& buffers) |
| 62 | { |
| 63 | BOOST_ASIO_HANDLER_LOCATION(( |
| 64 | __FILE__, __LINE__, |
| 65 | "http::async_write_some")); |
| 66 | |
| 67 | invoked = true; |
| 68 | ec = {}; |
| 69 | op_.s_.async_write_some( |
| 70 | buffers, std::move(op_)); |
| 71 | } |
| 72 | }; |
| 73 | |
| 74 | public: |
nothing calls this directly
no test coverage detected