Tunnels: Tighten the hop throttle more

after further testing, thx obscuratus + drzed
This commit is contained in:
zzz
2022-12-13 12:39:02 -05:00
parent 20f414c7fa
commit 08c31aa6f6

View File

@@ -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 }