mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 08:00:38 +03:00
don't create peer for unreachable router
This commit is contained in:
parent
49f4dc53ad
commit
7cfcb12c7b
@ -436,6 +436,10 @@ namespace transport
|
||||
auto it = m_Peers.find (ident);
|
||||
if (it == m_Peers.end ())
|
||||
{
|
||||
// check if not known as unreachable
|
||||
auto profile = i2p::data::GetRouterProfile (ident);
|
||||
if (profile && profile->IsUnreachable ()) return; // don't create peer to unreachable router
|
||||
// try to connect
|
||||
bool connected = false;
|
||||
try
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user