mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 08:00:38 +03:00
fixed typo
This commit is contained in:
parent
2e0019c8c8
commit
2d998aba43
@ -399,7 +399,7 @@ namespace transport
|
||||
if (context.SupportsV6 ())
|
||||
{
|
||||
address = peer.router->GetPublishedNTCP2V6Address ();
|
||||
if (address && m_CheckReserved && !i2p::util::net::IsInReservedRange(address->host))
|
||||
if (address && m_CheckReserved && i2p::util::net::IsInReservedRange(address->host))
|
||||
address = nullptr;
|
||||
}
|
||||
peer.numAttempts++;
|
||||
@ -409,7 +409,7 @@ namespace transport
|
||||
if (context.SupportsV4 () && !peer.router->IsUnreachable ())
|
||||
{
|
||||
address = peer.router->GetPublishedNTCP2V4Address ();
|
||||
if (address && m_CheckReserved && !i2p::util::net::IsInReservedRange(address->host))
|
||||
if (address && m_CheckReserved && i2p::util::net::IsInReservedRange(address->host))
|
||||
address = nullptr;
|
||||
}
|
||||
peer.numAttempts++;
|
||||
|
Loading…
Reference in New Issue
Block a user