Browse Source

fixed typo

pull/1626/head
orignal 4 years ago
parent
commit
2d998aba43
  1. 4
      libi2pd/Transports.cpp

4
libi2pd/Transports.cpp

@ -399,7 +399,7 @@ namespace transport
if (context.SupportsV6 ()) if (context.SupportsV6 ())
{ {
address = peer.router->GetPublishedNTCP2V6Address (); 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; address = nullptr;
} }
peer.numAttempts++; peer.numAttempts++;
@ -409,7 +409,7 @@ namespace transport
if (context.SupportsV4 () && !peer.router->IsUnreachable ()) if (context.SupportsV4 () && !peer.router->IsUnreachable ())
{ {
address = peer.router->GetPublishedNTCP2V4Address (); 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; address = nullptr;
} }
peer.numAttempts++; peer.numAttempts++;

Loading…
Cancel
Save