forked from I2P_Developers/i2p.i2p
* 2006-07-28 0.6.1.24 released
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user