Files
rippled/beast/asio
Vinnie Falco 88cb0a1f7a Add beast::asio::ssl_bundle workaround:
This works around the limitation that 1.56 boost::asio::ssl::stream objects
do not support r-value move or construction. It is required when the stream
does not own the socket.
2014-10-22 19:36:28 -07:00
..
2014-06-18 14:07:18 -07:00
2014-10-10 13:26:08 -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.