Skip to content

Commit dd7dd8c

Browse files
committed
Fixes cpp-netlib/cpp-netlib#16 -- removes a socket address reuse option.
1 parent 348cada commit dd7dd8c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

boost/network/protocol/http/server.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ namespace boost { namespace network { namespace http {
3737
tcp::resolver::query query(address, port);
3838
tcp::endpoint endpoint = *resolver.resolve(query);
3939
acceptor_.open(endpoint.protocol());
40-
acceptor_.set_option(tcp::acceptor::reuse_address(true));
4140
acceptor_.bind(endpoint);
4241
acceptor_.listen();
4342
acceptor_.async_accept(new_connection->socket(),

0 commit comments

Comments
 (0)