| 72 | //[code_websocket_8_1f |
| 73 | |
| 74 | void echo(stream<tcp_stream>& ws, |
| 75 | multi_buffer& buffer, net::yield_context yield) |
| 76 | { |
| 77 | ws.async_read(buffer, yield); |
| 78 | std::future<std::size_t> fut = |
| 79 | ws.async_write(buffer.data(), net::use_future); |
| 80 | } |
| 81 | |
| 82 | //] |
| 83 | //#endif |
nothing calls this directly
no test coverage detected