Author: toad
Date: 2008-03-01 15:23:47 +0000 (Sat, 01 Mar 2008)
New Revision: 18288
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1119:
Link level:
- Fix NegativeArrayIndex in FNPPacketMangler.processJFKMessage when trying to
process a non-bothNoderefs packet as a bothNoderefs packet.
Load management:
- Unlock UID when we reject a GetOfferedKey. This bug was causing
pInstantReject -> 100% despite no running requests (actually there were running
SSK offers... except they weren't running, they were rejected!)
Stats:
- Show CHK/SSK replies even if nothing else is running.
- Log CHK/SSK replies with NodeStats logging.
toad
Sorry for all the recent mess. :( Various bugfixes and removal-of-obsolete-code
and relatively minor changes triggered or introduced serious although often
small bugs...
Please upgrade, 1118 is seriously broken.
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-03-01 14:52:58 UTC (rev
18287)
+++ trunk/freenet/src/freenet/node/Version.java 2008-03-01 15:23:47 UTC (rev
18288)
@@ -24,11 +24,11 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1118;
+ private static final int buildNumber = 1119;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 1113;
- private static final int newLastGoodBuild = 1118;
+ private static final int newLastGoodBuild = 1119;
static final long transitionTime;
static {