* 2006-07-28 0.6.1.24 released

This commit is contained in:
jrandom
2006-07-29 18:03:14 +00:00
committed by zzz
parent b25bb053bb
commit 034803add7
7 changed files with 15 additions and 13 deletions

View File

@@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
*
*/
public class RouterVersion {
public final static String ID = "$Revision: 1.440 $ $Date: 2006-07-28 20:11:54 $";
public final static String VERSION = "0.6.1.23";
public final static long BUILD = 2;
public final static String ID = "$Revision: 1.441 $ $Date: 2006-07-28 23:41:16 $";
public final static String VERSION = "0.6.1.24";
public final static long BUILD = 0;
public static void main(String args[]) {
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
System.out.println("Router ID: " + RouterVersion.ID);

View File

@@ -317,8 +317,8 @@ public class NTCPTransport extends TransportImpl {
removed = (NTCPConnection)_conByIdent.remove(ident.calculateHash());
}
if ( (removed != null) && (removed != con) ) {// multiple cons, close 'em both
if (_log.shouldLog(Log.ERROR))
_log.error("Multiple connections on remove, closing " + removed + " (already closed " + con + ")");
if (_log.shouldLog(Log.WARN))
_log.warn("Multiple connections on remove, closing " + removed + " (already closed " + con + ")");
_context.statManager().addRateData("ntcp.multipleCloseOnRemove", removed.getUptime(), 0);
removed.close();
}