4 Jul
2017
4 Jul
'17
11:41 p.m.
On Tue, Jul 4, 2017 at 4:31 PM, Gavin Lambert via Boost
The other common pattern (Comet style long poll) is to accept a request and parse the headers but then just keep the connection open indefinitely before finally sending a response.
That's a supported use case, call `write_header` or `async_write_header` on the `serializer` and then at your leisure call `write` or `async_write` on the `serializer` again to finish.