Files
xahaud/beast/asio
Vinnie Falco 9bbcbd546b Fix streambuf bug:
The buffers_type::iterator could hold a pointer to a buffers_type that
was destroyed. This changes buffers_type::iterator to point to the
original streambuf instead, which always outlives the iterator.
2015-02-18 13:31:18 -05:00
..
2015-01-20 16:45:00 -08:00
2014-01-10 22:54:00 -08:00
2014-03-14 08:03:48 -07:00
2014-09-12 14:10:33 -07:00
2015-02-18 13:31:18 -05:00
2014-12-18 10:26:55 -08: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.