| 470 | |
| 471 | template<class ConstBufferSequence> |
| 472 | void |
| 473 | operator()(error_code& ec, |
| 474 | ConstBufferSequence const& buffers) |
| 475 | { |
| 476 | invoked = true; |
| 477 | bytes_transferred = |
| 478 | stream_.write_some(buffers, ec); |
| 479 | } |
| 480 | }; |
| 481 | |
| 482 | template<class Stream> |
nothing calls this directly
no test coverage detected