Examples set reuse_address(true)

fix #1027
This commit is contained in:
Vinnie Falco
2018-02-21 12:35:07 -08:00
parent 490b9ce893
commit a4714746dc
18 changed files with 122 additions and 0 deletions

View File

@ -191,6 +191,14 @@ public:
return;
}
// Allow address reuse
acceptor_.set_option(boost::asio::socket_base::reuse_address(true));
if(ec)
{
fail(ec, "set_option");
return;
}
// Bind to the server address
acceptor_.bind(endpoint, ec);
if(ec)