Files
xahaud/beast/asio
Vinnie Falco f63cf33118 New unit_test framework:
* Header-only!
* No external dependencies or other beast modules
* Compilation options allow for:
  - Stand-alone application to run a single test suite
  - Stand-alone application to run a set of test suites
  - Global suite of tests inline with the host application
  - Disable test suite generation completely
* Existing tests reworked to use the new classes
2014-03-21 18:00:37 -07:00
..
2014-02-05 15:53:16 -08:00
2014-03-21 18:00:37 -07:00
2014-03-14 08:03:48 -07:00
2014-03-14 08:03:48 -07:00
2014-03-21 18:00:37 -07:00
2014-03-14 08:03:48 -07:00
2014-03-21 07:30:50 -07:00
2014-01-10 22:54:00 -08:00
2014-02-05 15:53:16 -08:00
2014-03-21 07:30:50 -07:00
2014-03-14 08:03:48 -07:00
2014-03-21 07:30:50 -07:00
2014-03-21 07:30:50 -07:00
2014-03-14 08:03:48 -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.