1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-08 22:57:52 +00:00

don't accept tunnels if connected through proxy

This commit is contained in:
orignal 2024-09-06 19:04:07 -04:00
parent 855fd4d471
commit d539c9677e

View File

@ -323,6 +323,9 @@ namespace i2p
case eRouterStatusFirewalled:
SetUnreachable (true, false); // ipv4
break;
case eRouterStatusProxy:
m_AcceptsTunnels = false;
break;
default:
;
}