Author: toad
Date: 2008-01-24 00:01:53 +0000 (Thu, 24 Jan 2008)
New Revision: 17217

Modified:
   trunk/freenet/src/freenet/node/Version.java
Log:
1103: (mandatory tomorrow, sorry folks, but look below!)
Request layer:
- Un-break CHK request data transfers!
- Inserts: Start the data transfer at the beginning, without waiting for a 
response (revert 16727).
Client layer:
- Fix a deadlock / avoid nested locking.
Data transfer:
- Don't propagate repeated packets.
- Sanity check.
- Actually send the allSent message. IIRC we don't use this atm. Make it 
BULK_DATA so it is sent after the blocks it refers to.
- Don't re-add a block to the resend queue if it's already there.
Dev stuff:
- Logging.
- Thread names (use executor with a name).

robert
toad

Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-01-23 19:37:39 UTC (rev 
17216)
+++ trunk/freenet/src/freenet/node/Version.java 2008-01-24 00:01:53 UTC (rev 
17217)
@@ -24,11 +24,11 @@
        public static final String protocolVersion = "1.0";

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

        /** Oldest build of Fred we will talk to */
        private static final int oldLastGoodBuild = 1101;
-       private static final int newLastGoodBuild = 1102;
+       private static final int newLastGoodBuild = 1103;
        static final long transitionTime;

        static {


Reply via email to