From 5271838a147119a76df64b6172e809b789a88305 Mon Sep 17 00:00:00 2001 From: zzz Date: Sun, 9 Nov 2008 16:18:45 +0000 Subject: [PATCH] -9 --- .../i2p/router/web/ConfigTunnelsHandler.java | 2 +- .../net/i2p/client/streaming/Connection.java | 1 + history.txt | 29 +++++++++++++++++++ .../src/net/i2p/router/RouterVersion.java | 2 +- 4 files changed, 32 insertions(+), 2 deletions(-) diff --git a/apps/routerconsole/java/src/net/i2p/router/web/ConfigTunnelsHandler.java b/apps/routerconsole/java/src/net/i2p/router/web/ConfigTunnelsHandler.java index 60d30e6ea..c7c7c2eb9 100644 --- a/apps/routerconsole/java/src/net/i2p/router/web/ConfigTunnelsHandler.java +++ b/apps/routerconsole/java/src/net/i2p/router/web/ConfigTunnelsHandler.java @@ -76,7 +76,7 @@ public class ConfigTunnelsHandler extends FormHandler { } if ( (in == null) || (out == null) ) { - addFormError("Internal error (pool settings cound not be fuond for " + poolName + ")"); + addFormError("Internal error (pool settings cound not be found for " + poolName + ")"); index++; continue; } diff --git a/apps/streaming/java/src/net/i2p/client/streaming/Connection.java b/apps/streaming/java/src/net/i2p/client/streaming/Connection.java index a8b9eab97..45e51e4f8 100644 --- a/apps/streaming/java/src/net/i2p/client/streaming/Connection.java +++ b/apps/streaming/java/src/net/i2p/client/streaming/Connection.java @@ -950,6 +950,7 @@ public class Connection { buf.append(" acked: ").append(getAckedPackets()); buf.append(" maxWin ").append(getOptions().getMaxWindowSize()); + buf.append(" MTU ").append(getOptions().getMaxMessageSize()); buf.append("]"); return buf.toString(); diff --git a/history.txt b/history.txt index 141046800..736fa8d33 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,32 @@ +2008-11-09 zzz + * build.xml: Build speedups: + - Don't distclean in the updaterRouter target + - Don't make prepUpdate and prepupdateSmall depend + on distclean + - Don't make susimail build always clean + - Make pkg depend on distclean to be sure + - Clean out more routerconsole and susidns files in 'ant clean' + - i2ptunnel, routerconsole, susidns: + Only build WEB-INF when necessary + - systray: Only build jar when necessary + - Don't build i2psnark standalone for the updater target + * configclients.jsp: Provide a link when starting a webapp + * configtunnels.jsp: + - Code cleanup + - Add 4-hop option + - Remove +/- 0-2 option + * javadoc: Add some more package.html files + * I2PTunnelHTTPServer: Put the requestor's dest hash + in the request headers + * Jetty: Add a I2PRequestLog class to log request dest hash + * NetDb: Don't drop routerInfos if we have connectivity + issues or other problems + * NTCP: Lower idle timeout to 10m (was 15m) + * Routerconsole: Replace wtf msg w/ something nicer + * Tunnel BuildHandler: add config router.participantOnly, + set to true to refuse OBEP and IBGW roles, should + reduce connections significantly if set. + 2008-11-02 zzz * Certificates: - Add a signed Certificate type diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 56124cd55..8d9108c84 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -17,7 +17,7 @@ import net.i2p.CoreVersion; public class RouterVersion { public final static String ID = "$Revision: 1.548 $ $Date: 2008-06-07 23:00:00 $"; public final static String VERSION = "0.6.4"; - public final static long BUILD = 8; + public final static long BUILD = 9; public static void main(String args[]) { System.out.println("I2P Router version: " + VERSION + "-" + BUILD); System.out.println("Router ID: " + RouterVersion.ID);