Author: toad
Date: 2005-11-25 17:21:50 +0000 (Fri, 25 Nov 2005)
New Revision: 7602

Modified:
   trunk/freenet/src/freenet/node/RequestThrottle.java
   trunk/freenet/src/freenet/node/Version.java
Log:
Revert experimental request throttle sensitivity change, as it didn't work well.

Modified: trunk/freenet/src/freenet/node/RequestThrottle.java
===================================================================
--- trunk/freenet/src/freenet/node/RequestThrottle.java 2005-11-25 17:10:27 UTC 
(rev 7601)
+++ trunk/freenet/src/freenet/node/RequestThrottle.java 2005-11-25 17:21:50 UTC 
(rev 7602)
@@ -7,7 +7,7 @@
  */
 public class RequestThrottle {

-       protected static final float PACKET_DROP_DECREASE_MULTIPLE = 0.875f;
+       protected static final float PACKET_DROP_DECREASE_MULTIPLE = 0.97f;
        protected static final float PACKET_TRANSMIT_INCREMENT = (4 * (1 - 
(PACKET_DROP_DECREASE_MULTIPLE * PACKET_DROP_DECREASE_MULTIPLE))) / 3;
        protected static final long MAX_DELAY = 5*60*1000;
        protected static final long MIN_DELAY = 20;

Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2005-11-25 17:10:27 UTC (rev 
7601)
+++ trunk/freenet/src/freenet/node/Version.java 2005-11-25 17:21:50 UTC (rev 
7602)
@@ -20,10 +20,10 @@
        public static final String protocolVersion = "1.0";

        /** The build number of the current revision */
-       public static final int buildNumber = 220;
+       public static final int buildNumber = 221;

        /** Oldest build of Fred we will talk to */
-       public static final int lastGoodBuild = 220;
+       public static final int lastGoodBuild = 221;

        /** The highest reported build of fred */
        public static int highestSeenBuild = buildNumber;


Reply via email to