Files
xahaud/beast/asio
Vinnie Falco 0b692080cd Add shared_ptr<boost::asio::ssl::context> to ssl_bundle:
This gives the ssl_bundle shared ownership of the underlying ssl context
so that ownership of the bundle may be transferred to other classes without
introduce lifetime issues.
2014-10-30 13:55:00 -07: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

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.