mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
check if ident is unrechable only once
This commit is contained in:
parent
cd5bfaabb5
commit
527ee3b3c5
@ -461,7 +461,7 @@ namespace transport
|
||||
auto sz = it->second.delayedMessages.size ();
|
||||
if (sz < MAX_NUM_DELAYED_MESSAGES)
|
||||
{
|
||||
if (sz > CHECK_PROFILE_NUM_DELAYED_MESSAGES)
|
||||
if (sz < CHECK_PROFILE_NUM_DELAYED_MESSAGES && sz + msgs.size () >= CHECK_PROFILE_NUM_DELAYED_MESSAGES)
|
||||
{
|
||||
auto profile = i2p::data::GetRouterProfile (ident);
|
||||
if (profile && profile->IsUnreachable ())
|
||||
|
Loading…
Reference in New Issue
Block a user