mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Merge pull request #4307
4469b0c4
abstract_tcp_server2: fix binding to the wrong IP (moneromooo-monero)8eab6147
epee: use the socket::bind variant which does not throw (moneromooo-monero)
This commit is contained in:
commit
20087b3a9d
@ -1109,8 +1109,16 @@ POP_WARNINGS
|
|||||||
sock_.open(remote_endpoint.protocol());
|
sock_.open(remote_endpoint.protocol());
|
||||||
if(bind_ip != "0.0.0.0" && bind_ip != "0" && bind_ip != "" )
|
if(bind_ip != "0.0.0.0" && bind_ip != "0" && bind_ip != "" )
|
||||||
{
|
{
|
||||||
boost::asio::ip::tcp::endpoint local_endpoint(boost::asio::ip::address::from_string(adr.c_str()), 0);
|
boost::asio::ip::tcp::endpoint local_endpoint(boost::asio::ip::address::from_string(bind_ip.c_str()), 0);
|
||||||
sock_.bind(local_endpoint);
|
boost::system::error_code ec;
|
||||||
|
sock_.bind(local_endpoint, ec);
|
||||||
|
if (ec)
|
||||||
|
{
|
||||||
|
MERROR("Error binding to " << bind_ip << ": " << ec.message());
|
||||||
|
if (sock_.is_open())
|
||||||
|
sock_.close();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -1215,8 +1223,16 @@ POP_WARNINGS
|
|||||||
sock_.open(remote_endpoint.protocol());
|
sock_.open(remote_endpoint.protocol());
|
||||||
if(bind_ip != "0.0.0.0" && bind_ip != "0" && bind_ip != "" )
|
if(bind_ip != "0.0.0.0" && bind_ip != "0" && bind_ip != "" )
|
||||||
{
|
{
|
||||||
boost::asio::ip::tcp::endpoint local_endpoint(boost::asio::ip::address::from_string(adr.c_str()), 0);
|
boost::asio::ip::tcp::endpoint local_endpoint(boost::asio::ip::address::from_string(bind_ip.c_str()), 0);
|
||||||
sock_.bind(local_endpoint);
|
boost::system::error_code ec;
|
||||||
|
sock_.bind(local_endpoint, ec);
|
||||||
|
if (ec)
|
||||||
|
{
|
||||||
|
MERROR("Error binding to " << bind_ip << ": " << ec.message());
|
||||||
|
if (sock_.is_open())
|
||||||
|
sock_.close();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
boost::shared_ptr<boost::asio::deadline_timer> sh_deadline(new boost::asio::deadline_timer(io_service_));
|
boost::shared_ptr<boost::asio::deadline_timer> sh_deadline(new boost::asio::deadline_timer(io_service_));
|
||||||
|
Loading…
Reference in New Issue
Block a user