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.
This commit is contained in:
jrandom
2005-10-29 21:43:41 +00:00
committed by zzz
parent 52ace2d695
commit e7d2281772

View File

@ -45,7 +45,7 @@ public class EstablishmentManager {
private Object _activityLock; private Object _activityLock;
private int _activity; 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 static final String PROP_MAX_CONCURRENT_ESTABLISH = "i2np.udp.maxConcurrentEstablish";
public EstablishmentManager(RouterContext ctx, UDPTransport transport) { public EstablishmentManager(RouterContext ctx, UDPTransport transport) {