Author: toad
Date: 2008-11-06 13:50:42 +0000 (Thu, 06 Nov 2008)
New Revision: 23350
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1169: Mandatory on Monday:
- Fix announcing to the same node more than once (sdiz's refactorings spotted
this one)
- Update logging, we're having some difficulties with updating freenet-ext.jar
- Make salted hash the default datastore type (for new nodes only)
- Don't do DNS lookups in shouldThrottle(), causes severe problems if a node
has a bogus DNS name
- Increase the Accepted timeout on announcements to 10 seconds
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-11-06 13:42:30 UTC (rev
23349)
+++ trunk/freenet/src/freenet/node/Version.java 2008-11-06 13:50:42 UTC (rev
23350)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1168;
+ private static final int buildNumber = 1169;
/** Oldest build of Fred we will talk to */
- private static final int oldLastGoodBuild = 1165;
- private static final int newLastGoodBuild = 1168;
+ private static final int oldLastGoodBuild = 1168;
+ private static final int newLastGoodBuild = 1169;
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.OCTOBER, 31, 0, 0, 0 );
+ _cal.set( 2008, Calendar.NOVEMBER, 10, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}