mirror of
https://github.com/nghttp2/nghttp2.git
synced 2026-06-21 10:39:17 +08:00
Merge branch 'akonskarm-master'
This commit is contained in:
@@ -39,8 +39,8 @@ session_tcp_impl::session_tcp_impl(
|
|||||||
const boost::asio::ip::tcp::endpoint &local_endpoint,
|
const boost::asio::ip::tcp::endpoint &local_endpoint,
|
||||||
const std::string &host, const std::string &service,
|
const std::string &host, const std::string &service,
|
||||||
const boost::posix_time::time_duration &connect_timeout)
|
const boost::posix_time::time_duration &connect_timeout)
|
||||||
: session_impl(io_service, connect_timeout),
|
: session_impl(io_service, connect_timeout), socket_(io_service) {
|
||||||
socket_(io_service, tcp::v4()) {
|
socket_.open(local_endpoint.protocol());
|
||||||
boost::asio::socket_base::reuse_address option(true);
|
boost::asio::socket_base::reuse_address option(true);
|
||||||
socket_.set_option(option);
|
socket_.set_option(option);
|
||||||
socket_.bind(local_endpoint);
|
socket_.bind(local_endpoint);
|
||||||
|
|||||||
Reference in New Issue
Block a user