Merge branch 'master' of https://github.com/akonskarm/nghttp2 into akonskarm-master

This commit is contained in:
Tatsuhiro Tsujikawa 2018-08-27 21:30:36 +09:00
commit 214d089910
1 changed files with 2 additions and 1 deletions

View File

@ -40,7 +40,8 @@ session_tcp_impl::session_tcp_impl(
const std::string &host, const std::string &service,
const boost::posix_time::time_duration &connect_timeout)
: session_impl(io_service, connect_timeout),
socket_(io_service, tcp::v4()) {
socket_(io_service) {
socket_.open(local_endpoint.protocol());
boost::asio::socket_base::reuse_address option(true);
socket_.set_option(option);
socket_.bind(local_endpoint);