From 7a752cc7a22fcaa4e52f67432bd773f19605b3af Mon Sep 17 00:00:00 2001 From: zzz <zzz@mail.i2p> Date: Mon, 13 Jul 2009 02:56:35 +0000 Subject: [PATCH] * Throttle: Increase default max tunnels to 3000, to give us more capacity during congestion --- router/java/src/net/i2p/router/RouterThrottleImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router/java/src/net/i2p/router/RouterThrottleImpl.java b/router/java/src/net/i2p/router/RouterThrottleImpl.java index 4b3f683ea5..88a8953321 100644 --- a/router/java/src/net/i2p/router/RouterThrottleImpl.java +++ b/router/java/src/net/i2p/router/RouterThrottleImpl.java @@ -31,7 +31,7 @@ class RouterThrottleImpl implements RouterThrottle { private static int THROTTLE_EVENT_LIMIT = 30; private static final String PROP_MAX_TUNNELS = "router.maxParticipatingTunnels"; - private static final int DEFAULT_MAX_TUNNELS = 2000; + private static final int DEFAULT_MAX_TUNNELS = 3000; private static final String PROP_DEFAULT_KBPS_THROTTLE = "router.defaultKBpsThrottle"; private static final String PROP_MAX_PROCESSINGTIME = "router.defaultProcessingTimeThrottle"; private static final int DEFAULT_MAX_PROCESSINGTIME = 1500; -- GitLab