Author: toad
Date: 2006-10-06 14:00:22 +0000 (Fri, 06 Oct 2006)
New Revision: 10631
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
987:
- Add Indicia to the default bookmarks (as first).
- Priority order is still priority class -> number of retries -> client
round-robin -> request round-robin. But we treat a request with no retries the
same as a request with up to 3 retries. This means that lots of requests which
haven't been tried yet won't block other requests from other clients which need
to be retried once or twice, but requests which have been tried many times
already will still be tried last.
- Treat all Frost's connections as a single client for purposes of choosing a
request to run.
- Don't create a separate client for each USK fetcher. Minimize the number of
clients so that we can round-robin between them in a sensible way.
- More and better statistics: store size/usage, JVM,
- Prevent clock seeming to go backwards because of synchronization in TDRA.
- Logging/debugging code.
- Include the full GPL, including the "How to Apply These Terms to Your New
Programs" section.
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2006-10-06 13:19:32 UTC (rev
10630)
+++ trunk/freenet/src/freenet/node/Version.java 2006-10-06 14:00:22 UTC (rev
10631)
@@ -24,7 +24,7 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 986;
+ private static final int buildNumber = 987;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 970;