| 429 | } |
| 430 | |
| 431 | struct short_transfer |
| 432 | { |
| 433 | short_transfer() {} |
| 434 | short_transfer(short_transfer&&) {} |
| 435 | size_t operator()(const boost::system::error_code& ec, |
| 436 | size_t /*bytes_transferred*/) |
| 437 | { |
| 438 | return !!ec ? 0 : 3; |
| 439 | } |
| 440 | }; |
| 441 | |
| 442 | void test_3_arg_mutable_buffer_read() |
| 443 | { |
no outgoing calls