mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 21:37:17 +01:00
reseed from compatible address
This commit is contained in:
parent
d5b61ed544
commit
ca77ca6ef0
|
@ -678,8 +678,31 @@ namespace data
|
||||||
// direct connection
|
// direct connection
|
||||||
auto it = boost::asio::ip::tcp::resolver(service).resolve (
|
auto it = boost::asio::ip::tcp::resolver(service).resolve (
|
||||||
boost::asio::ip::tcp::resolver::query (url.host, std::to_string(url.port)), ecode);
|
boost::asio::ip::tcp::resolver::query (url.host, std::to_string(url.port)), ecode);
|
||||||
if(!ecode)
|
if (!ecode)
|
||||||
s.lowest_layer().connect (*it, ecode);
|
{
|
||||||
|
bool connected = false;
|
||||||
|
boost::asio::ip::tcp::resolver::iterator end;
|
||||||
|
while (it != end)
|
||||||
|
{
|
||||||
|
boost::asio::ip::tcp::endpoint ep = *it;
|
||||||
|
if ((ep.address ().is_v4 () && i2p::context.SupportsV4 ()) ||
|
||||||
|
(ep.address ().is_v6 () && i2p::context.SupportsV6 ()))
|
||||||
|
{
|
||||||
|
s.lowest_layer().connect (ep, ecode);
|
||||||
|
if (!ecode)
|
||||||
|
{
|
||||||
|
connected = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
it++;
|
||||||
|
}
|
||||||
|
if (!connected)
|
||||||
|
{
|
||||||
|
LogPrint(eLogError, "Reseed: Failed to connect to ", url.host);
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (!ecode)
|
if (!ecode)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue