Author: toad
Date: 2008-11-14 17:50:17 +0000 (Fri, 14 Nov 2008)
New Revision: 23586
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1177:
Link layer:
- Make the responder initiate rekeying 2.5 minutes early. This should prevent
both sides trying to rekey at the same time, leading to a variety of bugs that
have been rather disruptive recently.
- Warn the user via a UserAlert when peers are being disconnected due to packet
not acked. We need to be told of such bugs.
- If we can't send a full packet due to a WouldBlockException, and we still
need to send a packet, send an empty packet instead.
- Fix calculation of next handshake time in completedHandshake().
Bookmarks:
- Remove wAnnA? from the default bookmarks list.
Logging:
- Change default log rotation interval to 10 minutes.
Config:
- Clarify that turning off padding is BAD.
- Spelling fixes.
Dev stuff:
- Logging.
nextgens
toad
(Sorry, 1176 released accidentally with most of the above and a bug)
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-11-14 17:46:07 UTC (rev
23585)
+++ trunk/freenet/src/freenet/node/Version.java 2008-11-14 17:50:17 UTC (rev
23586)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1176;
+ private static final int buildNumber = 1177;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 1175;
- private static final int newLastGoodBuild = 1176;
+ private static final int newLastGoodBuild = 1177;
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.NOVEMBER, 15, 0, 0, 0 );
+ _cal.set( 2008, Calendar.NOVEMBER, 16, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}
_______________________________________________
cvs mailing list
[email protected]
http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs