Browse Source

allow transit for router behind symmetric NAT or proxy

pull/2094/merge
orignal 2 weeks ago
parent
commit
d99a7d9b20
  1. 6
      libi2pd/RouterContext.cpp

6
libi2pd/RouterContext.cpp

@ -323,10 +323,6 @@ namespace i2p @@ -323,10 +323,6 @@ namespace i2p
case eRouterStatusFirewalled:
SetUnreachable (true, false); // ipv4
break;
case eRouterStatusProxy:
m_AcceptsTunnels = false;
UpdateCongestion ();
break;
default:
;
}
@ -1489,7 +1485,7 @@ namespace i2p @@ -1489,7 +1485,7 @@ namespace i2p
void RouterContext::UpdateCongestion ()
{
auto c = i2p::data::RouterInfo::eLowCongestion;
if (!AcceptsTunnels () || !m_ShareRatio || (m_Error == eRouterErrorSymmetricNAT && !SupportsV6 () && !SupportsMesh ()))
if (!AcceptsTunnels () || !m_ShareRatio)
c = i2p::data::RouterInfo::eRejectAll;
else
{

Loading…
Cancel
Save