Update Beast subtree to 1.0.0-b23:

Merge commit '7028579170d83cb81a97478b620f3cb15a2fd693' into develop
This commit is contained in:
Vinnie Falco
2017-01-17 14:50:38 -05:00
20 changed files with 221 additions and 85 deletions

View File

@@ -1416,7 +1416,10 @@ public:
yield_to_mf(ep, &stream_test::testAsyncClient);
}
{
async_echo_server server(true, any, 4);
error_code ec;
async_echo_server server{nullptr, 4};
server.open(true, any, ec);
BEAST_EXPECTS(! ec, ec.message());
auto const ep = server.local_endpoint();
testSyncClient(ep);
testAsyncWriteFrame(ep);