Author: toad
Date: 2008-02-29 18:40:27 +0000 (Fri, 29 Feb 2008)
New Revision: 18259
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1116:
Connectivity:
- Read support for group lookup table. This should save around 500 bytes on an
anon-auth JFK(3), meaning that you will now be able to connect via announcement
on any connection where you can exchange packets once you are connected.
However, this is only the "read" support, the "write" support will be
implemented once this is mandatory.
- Don't include the location in the noderef.
- Don't include testnet=false (only include it if it is true).
- Note the above was already true in certain cases.
- Don't include myName unless opennet=false and forSetup=false (we do want it
on a noderef-for-manual-reference-exchange).
Dev stuff:
- Logging.
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-02-29 18:39:37 UTC (rev
18258)
+++ trunk/freenet/src/freenet/node/Version.java 2008-02-29 18:40:27 UTC (rev
18259)
@@ -24,11 +24,11 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1115;
+ private static final int buildNumber = 1116;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 1113;
- private static final int newLastGoodBuild = 1115;
+ private static final int newLastGoodBuild = 1116;
static final long transitionTime;
static {