make_strand is in net::

This commit is contained in:
Vinnie Falco
2019-03-02 05:22:02 -08:00
parent dfd3752c23
commit fca4b3ae10
32 changed files with 58 additions and 121 deletions

View File

@ -183,7 +183,7 @@ public:
tcp::endpoint endpoint)
: ioc_(ioc)
, ctx_(ctx)
, acceptor_(beast::make_strand(ioc))
, acceptor_(net::make_strand(ioc))
{
beast::error_code ec;
@ -235,7 +235,7 @@ public:
{
// The new connection gets its own strand
acceptor_.async_accept(
beast::make_strand(ioc_),
net::make_strand(ioc_),
beast::bind_front_handler(
&listener::on_accept,
shared_from_this()));