Author: nextgens
Date: 2006-09-10 22:03:10 +0000 (Sun, 10 Sep 2006)
New Revision: 10451

Modified:
   trunk/freenet/src/freenet/node/Version.java
   trunk/freenet/src/freenet/support/LimitedRangeIntByteArrayMapElement.java
Log:
976:
        * Fix the "/config" page not loading bug
        * Add a new networkSize estimation code
        * Don't ask for retransmissions before 4 RTT

Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2006-09-10 18:12:36 UTC (rev 
10450)
+++ trunk/freenet/src/freenet/node/Version.java 2006-09-10 22:03:10 UTC (rev 
10451)
@@ -21,7 +21,7 @@
        public static final String protocolVersion = "1.0";

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

        /** Oldest build of Fred we will talk to */
        private static final int oldLastGoodBuild = 950;

Modified: 
trunk/freenet/src/freenet/support/LimitedRangeIntByteArrayMapElement.java
===================================================================
--- trunk/freenet/src/freenet/support/LimitedRangeIntByteArrayMapElement.java   
2006-09-10 18:12:36 UTC (rev 10450)
+++ trunk/freenet/src/freenet/support/LimitedRangeIntByteArrayMapElement.java   
2006-09-10 22:03:10 UTC (rev 10451)
@@ -16,7 +16,7 @@
     public final byte[] data;
     public final AsyncMessageCallback[] callbacks;
     public final long createdTime;
-    long reputTime = -1; /* Should only be set to a real time when we are 
re-added the first time */
+    long reputTime;

        public void reput() {
                this.reputTime = System.currentTimeMillis();


Reply via email to