Author: toad
Date: 2008-12-10 00:30:31 +0000 (Wed, 10 Dec 2008)
New Revision: 24161
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1192: Fix a serious bug in PacketSender: Major unfairness in the packet
scheduling code.
(The rest of trunk is not in this release).
Mandatory on Friday.
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-12-10 00:12:04 UTC (rev
24160)
+++ trunk/freenet/src/freenet/node/Version.java 2008-12-10 00:30:31 UTC (rev
24161)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1191;
+ private static final int buildNumber = 1192;
/** Oldest build of Fred we will talk to */
- private static final int oldLastGoodBuild = 1188;
- private static final int newLastGoodBuild = 1190;
+ private static final int oldLastGoodBuild = 1190;
+ private static final int newLastGoodBuild = 1192;
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, 9, 0, 0, 0 );
+ _cal.set( 2008, Calendar.DECEMBER, 12, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}
_______________________________________________
cvs mailing list
[email protected]
http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs