Author: toad
Date: 2007-03-22 14:24:22 +0000 (Thu, 22 Mar 2007)
New Revision: 12275
Modified:
trunk/freenet/src/freenet/node/Node.java
Log:
Up max/sub-max throttle delay to 3000/2000ms.
There is method in this madness, see the other commit, see #1245.
Modified: trunk/freenet/src/freenet/node/Node.java
===================================================================
--- trunk/freenet/src/freenet/node/Node.java 2007-03-22 14:02:15 UTC (rev
12274)
+++ trunk/freenet/src/freenet/node/Node.java 2007-03-22 14:24:22 UTC (rev
12275)
@@ -239,10 +239,10 @@
public static final long MAX_PING_TIME = 1500;
/** Maximum throttled packet delay. If the throttled packet delay is
greater
* than this, reject all packets. */
- public static final long MAX_THROTTLE_DELAY = 2000;
+ public static final long MAX_THROTTLE_DELAY = 3000;
/** If the throttled packet delay is less than this, reject no packets;
if it's
* between the two, reject some packets. */
- public static final long SUB_MAX_THROTTLE_DELAY = 1000;
+ public static final long SUB_MAX_THROTTLE_DELAY = 2000;
/** How high can bwlimitDelayTime be before we alert (in milliseconds)*/
public static final long MAX_BWLIMIT_DELAY_TIME_ALERT_THRESHOLD =
MAX_THROTTLE_DELAY*2;
/** How high can nodeAveragePingTime be before we alert (in
milliseconds)*/