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

@ -2,6 +2,7 @@ Version 158:
* Tidy up end_of_stream javadoc
* Tidy up websocket docs
* Examples set reuse_address(true)
--------------------------------------------------------------------------------

View File

@ -73,6 +73,7 @@ to update to the latest Boost release.
* [link beast.ref.boost__beast__bind_handler `bind_handler`]
works with boost placeholders
* Examples set `reuse_address(true)`
[*Fixes]

View File

@ -1171,6 +1171,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)

View File

@ -722,6 +722,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)

View File

@ -419,6 +419,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)

View File

@ -380,6 +380,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)

View File

@ -325,6 +325,11 @@ do_listen(
if(ec)
return fail(ec, "open");
// Allow address reuse
acceptor.set_option(boost::asio::socket_base::reuse_address(true));
if(ec)
return fail(ec, "set_option");
// Bind to the server address
acceptor.bind(endpoint, ec);
if(ec)

View File

@ -309,6 +309,11 @@ do_listen(
if(ec)
return fail(ec, "open");
// Allow address reuse
acceptor.set_option(boost::asio::socket_base::reuse_address(true));
if(ec)
return fail(ec, "set_option");
// Bind to the server address
acceptor.bind(endpoint, ec);
if(ec)

View File

@ -591,6 +591,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)

View File

@ -405,6 +405,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)

View File

@ -372,6 +372,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)

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)

View File

@ -165,6 +165,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)

View File

@ -106,6 +106,11 @@ do_listen(
if(ec)
return fail(ec, "open");
// Allow address reuse
acceptor.set_option(boost::asio::socket_base::reuse_address(true));
if(ec)
return fail(ec, "set_option");
// Bind to the server address
acceptor.bind(endpoint, ec);
if(ec)

View File

@ -92,6 +92,11 @@ do_listen(
if(ec)
return fail(ec, "open");
// Allow address reuse
acceptor.set_option(boost::asio::socket_base::reuse_address(true));
if(ec)
return fail(ec, "set_option");
// Bind to the server address
acceptor.bind(endpoint, ec);
if(ec)

View File

@ -268,6 +268,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)
@ -376,6 +384,10 @@ do_coro_listen(
if(ec)
return fail(ec, "open");
acceptor.set_option(boost::asio::socket_base::reuse_address(true));
if(ec)
return fail(ec, "set_option");
acceptor.bind(endpoint, ec);
if(ec)
return fail(ec, "bind");

View File

@ -179,6 +179,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)

View File

@ -156,6 +156,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)