This commit is contained in:
zzz
2008-11-09 16:18:45 +00:00
parent 9ec45bbcf5
commit 5271838a14
4 changed files with 32 additions and 2 deletions

View File

@ -76,7 +76,7 @@ public class ConfigTunnelsHandler extends FormHandler {
} }
if ( (in == null) || (out == null) ) { 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++; index++;
continue; continue;
} }

View File

@ -950,6 +950,7 @@ public class Connection {
buf.append(" acked: ").append(getAckedPackets()); buf.append(" acked: ").append(getAckedPackets());
buf.append(" maxWin ").append(getOptions().getMaxWindowSize()); buf.append(" maxWin ").append(getOptions().getMaxWindowSize());
buf.append(" MTU ").append(getOptions().getMaxMessageSize());
buf.append("]"); buf.append("]");
return buf.toString(); return buf.toString();

View File

@ -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 2008-11-02 zzz
* Certificates: * Certificates:
- Add a signed Certificate type - Add a signed Certificate type

View File

@ -17,7 +17,7 @@ import net.i2p.CoreVersion;
public class RouterVersion { public class RouterVersion {
public final static String ID = "$Revision: 1.548 $ $Date: 2008-06-07 23:00:00 $"; 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 String VERSION = "0.6.4";
public final static long BUILD = 8; public final static long BUILD = 9;
public static void main(String args[]) { public static void main(String args[]) {
System.out.println("I2P Router version: " + VERSION + "-" + BUILD); System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
System.out.println("Router ID: " + RouterVersion.ID); System.out.println("Router ID: " + RouterVersion.ID);