Author: toad
Date: 2006-08-17 01:16:20 +0000 (Thu, 17 Aug 2006)
New Revision: 10151

Modified:
   trunk/freenet/src/freenet/node/Version.java
Log:
947: Make 944 mandatory on Monday at 0:00.
Justification: Various routing/low level changes in recent builds:
940: Persist load limiting data to disk
942: Increase the averaging interval for pings to prevent oscillation (esp on 
CPU-bound nodes)
943: Process acks etc in a packet even if we've already received that packet 
(the acks are independant of the payload)
944: Schedule transfers to a peer collectively, slow start support, and reduce 
some timeouts.

Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2006-08-17 00:53:58 UTC (rev 
10150)
+++ trunk/freenet/src/freenet/node/Version.java 2006-08-17 01:16:20 UTC (rev 
10151)
@@ -18,12 +18,12 @@
        public static final String protocolVersion = "1.0";

        /** The build number of the current revision */
-       private static final int buildNumber = 946;
+       private static final int buildNumber = 947;

        /** Oldest build of Fred we will talk to */
        private static final int oldLastGoodBuild = 920;
-       private static final int newLastGoodBuild = 939;
-       private static final long transitionTime = 1155513600L*1000L; // 
midnight monday 14/08/06
+       private static final int newLastGoodBuild = 944;
+       private static final long transitionTime = 1156118400L*1000L; // 
midnight monday 14/08/06

        public static final int buildNumber() {
                return buildNumber;


Reply via email to