Files
xahaud/beast/asio
Vinnie Falco eedf724ccd Fix streambuf::prepare:
In some edge cases, calling prepare could leave the output
sequence with the incorrect size. This happens when out_end_
is non-zero and the call to prepare should leave out_end_ at 0.
2016-03-23 15:32:26 -04:00
..
2015-07-31 17:39:03 -07:00
2016-03-23 15:32:26 -04:00
2015-07-31 17:39:03 -07:00
2015-05-22 11:09:50 -07:00
2014-03-14 08:03:48 -07:00
2015-08-04 13:51:02 -07:00
2016-03-23 15:32:26 -04:00

beast::asio

Wrappers and utilities to make working with boost::asio easier.

Rules for asynchronous objects

If an object calls asynchronous initiating functions it must either:

1. Manage its lifetime by being reference counted

or

2. Wait for all pending completion handlers to be called before
   allowing itself to be destroyed.