From 207471b220f00a5be85878c206bb33fb2c3fc0ec Mon Sep 17 00:00:00 2001 From: zzz Date: Sat, 4 Jul 2026 09:40:31 -0400 Subject: [PATCH] Tunnels: Increase per-tunnel bw limits for now --- .../java/src/net/i2p/router/tunnel/TunnelDispatcher.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/router/java/src/net/i2p/router/tunnel/TunnelDispatcher.java b/router/java/src/net/i2p/router/tunnel/TunnelDispatcher.java index d12fe3bee..4e6b24269 100644 --- a/router/java/src/net/i2p/router/tunnel/TunnelDispatcher.java +++ b/router/java/src/net/i2p/router/tunnel/TunnelDispatcher.java @@ -852,13 +852,13 @@ public class TunnelDispatcher implements Service { int maxTunnels = _context.getProperty(RouterThrottleImpl.PROP_MAX_TUNNELS, RouterThrottleImpl.DEFAULT_MAX_TUNNELS); if (maxTunnels > 25) { if (max >= 2048*1024) // X - max /= 12; + max /= 6; if (max >= 128*1024) // O/P - max /= 8; - else if (max <= 48*1024) // K/L max /= 4; + else if (max <= 48*1024) // K/L + max /= 2; else - max = (12*1024) + ((max - (48*1024)) / 6); // M/N + max = (24*1024) + ((max - (48*1024)) / 6); // M/N } return max; }