From e7d2281772f5e01ec30653f94e6951a571cc6c9b Mon Sep 17 00:00:00 2001 From: jrandom <jrandom> Date: Sat, 29 Oct 2005 21:43:41 +0000 Subject: [PATCH] 2005-10-29 jrandom * Improved the bandwidth throtting on tunnel participation, especially for low bandwidth peers. * Improved failure handling in SSU with proactive reestablishment of failing idle peers, and rather than shitlisting a peer who failed too much, drop the SSU session and allow a new attempt (which, if it fails, will cause a shitlisting) * Clarify the cause of the shitlist on the profiles page, and include bandwidth limiter info at the bottom of the peers page. --- .../src/net/i2p/router/transport/udp/EstablishmentManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router/java/src/net/i2p/router/transport/udp/EstablishmentManager.java b/router/java/src/net/i2p/router/transport/udp/EstablishmentManager.java index 09d80b358d..cf842f1caf 100644 --- a/router/java/src/net/i2p/router/transport/udp/EstablishmentManager.java +++ b/router/java/src/net/i2p/router/transport/udp/EstablishmentManager.java @@ -45,7 +45,7 @@ public class EstablishmentManager { private Object _activityLock; private int _activity; - private static final int DEFAULT_MAX_CONCURRENT_ESTABLISH = 16; + private static final int DEFAULT_MAX_CONCURRENT_ESTABLISH = 4; public static final String PROP_MAX_CONCURRENT_ESTABLISH = "i2np.udp.maxConcurrentEstablish"; public EstablishmentManager(RouterContext ctx, UDPTransport transport) { -- GitLab