Author: toad
Date: 2008-12-03 12:55:48 +0000 (Wed, 03 Dec 2008)
New Revision: 24028

Modified:
   trunk/freenet/src/freenet/node/Version.java
Log:
1188:
Connectivity:
- Refactor KeyTracker into PacketTracker and KeyTracker. KeyTracker is simply a 
session key, PacketTracker is all the retransmission, acknowledgement etc logic.
- A KeyTracker has a fixed PacketTracker.
- New negotiation type 3: if we connect with neg type 3, we keep the old 
PacketTracker on rekeying.
- This should avoid the disconnected due to not acking bug in 99% of cases.
Salted hash datastore:
- Don't write to the store file until it has been preallocated, avoid hanging 
on Windows.
- Bloom filter bug fixes.
- Don't save the decryption key.
- 5 probes, not 4.
- Logging.
IP detection:
- Plugin detection: If we have only local peers, but none disconnected, treat 
it for purposes of deciding whether to use the detection plugins as if we had 
no peers at all.
L10n:
- Finnish update from Smar
Dev stuff:
- Logging.
- Add recommendedExtVersion to the manifest. This will be useful for update 
dependancies.

XMLLibrarian:
- Don't log the search to an extra file, log to Logger.

nextgens
sdiz
Smar
toad


Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-12-03 12:50:17 UTC (rev 
24027)
+++ trunk/freenet/src/freenet/node/Version.java 2008-12-03 12:55:48 UTC (rev 
24028)
@@ -24,17 +24,17 @@
        public static final String protocolVersion = "1.0";
 
        /** The build number of the current revision */
-       private static final int buildNumber = 1187;
+       private static final int buildNumber = 1188;
 
        /** Oldest build of Fred we will talk to */
-       private static final int oldLastGoodBuild = 1185;
-       private static final int newLastGoodBuild = 1186;
+       private static final int oldLastGoodBuild = 1186;
+       private static final int newLastGoodBuild = 1188;
        static final long transitionTime;
        
        static {
                final Calendar _cal = 
Calendar.getInstance(TimeZone.getTimeZone("GMT"));
                // year, month - 1 (or constant), day, hour, minute, second
-               _cal.set( 2008, Calendar.DECEMBER, 2, 0, 0, 0 );
+               _cal.set( 2008, Calendar.DECEMBER, 6, 0, 0, 0 );
                transitionTime = _cal.getTimeInMillis();
        }
        

_______________________________________________
cvs mailing list
[email protected]
http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs

Reply via email to