From 08c31aa6f6c370b50959b3bd7c123c67a4e6367c Mon Sep 17 00:00:00 2001 From: zzz Date: Tue, 13 Dec 2022 12:39:02 -0500 Subject: [PATCH] Tunnels: Tighten the hop throttle more after further testing, thx obscuratus + drzed --- .../src/net/i2p/router/tunnel/pool/ParticipatingThrottler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router/java/src/net/i2p/router/tunnel/pool/ParticipatingThrottler.java b/router/java/src/net/i2p/router/tunnel/pool/ParticipatingThrottler.java index 765492de7..1ee7389bd 100644 --- a/router/java/src/net/i2p/router/tunnel/pool/ParticipatingThrottler.java +++ b/router/java/src/net/i2p/router/tunnel/pool/ParticipatingThrottler.java @@ -37,7 +37,7 @@ class ParticipatingThrottler { private static final int LIFETIME_PORTION = 3; private static final int MIN_LIMIT = 12 / LIFETIME_PORTION; private static final int MAX_LIMIT = 66 / LIFETIME_PORTION; - private static final int PERCENT_LIMIT = 9 / LIFETIME_PORTION; + private static final int PERCENT_LIMIT = 3 / LIFETIME_PORTION; private static final long CLEAN_TIME = 11*60*1000 / LIFETIME_PORTION; public enum Result { ACCEPT, REJECT, DROP }