Author: toad
Date: 2008-05-07 15:02:51 +0000 (Wed, 07 May 2008)
New Revision: 19830
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1149:
- Italian update from Luke771.
- Fix #2290: We were still running STUN every 5 minutes in some cases due to a
bug.
- Queue page: Key before persistence in normal mode, since it's more important.
Also include the download priority box in normal mode.
- Queue page: Don't allow changing priority to EMERGENCY and VERY HIGH in
normal mode. Show them in the key only if there are requests at that priority.
- Announcement:
-- Force the DNS requestor thread to run immediately after adding seednodes to
connect to.
-- Wait 5 seconds after connecting to a seednode before sending an announcment.
This should ensure we distribute announcements more evenly across nodes.
-- Reduce the cooldown period (time after a bunch of announcements before we do
another one) from 60 to 30 seconds.
-- Announce to 5 seednodes in parallel (not 3), and connect to 15 (not 10).
This shouldn't have much impact on seednode load because we usually need
multiple rounds anyway.
- Comments.
JSTUN:
- If we get a valid IP from a server but not a mode, count it as an unlikely
detection with type NOT_SUPPORTED.
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-05-07 14:53:30 UTC (rev
19829)
+++ trunk/freenet/src/freenet/node/Version.java 2008-05-07 15:02:51 UTC (rev
19830)
@@ -24,7 +24,7 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1148;
+ private static final int buildNumber = 1149;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 1145;