* 2004-12-01 0.4.2.2 released

2004-12-01  jrandom
    * Fixed a stupid typo that inadvertantly allowed persistent HTTP
      connections to work (thanks duck!)
    * Make sure we override the inactivity timeout too
This commit is contained in:
jrandom
2004-12-02 00:35:17 +00:00
committed by zzz
parent cb930a7ab5
commit 97e8ab7c5b

View File

@ -33,12 +33,12 @@ public abstract class I2PTunnelClientBase extends I2PTunnelTask implements Runna
private static final Log _log = new Log(I2PTunnelClientBase.class); private static final Log _log = new Log(I2PTunnelClientBase.class);
protected Logging l; protected Logging l;
private static final long DEFAULT_CONNECT_TIMEOUT = 60 * 1000; static final long DEFAULT_CONNECT_TIMEOUT = 60 * 1000;
private static volatile long __clientId = 0; private static volatile long __clientId = 0;
protected long _clientId; protected long _clientId;
protected Object sockLock = new Object(); // Guards sockMgr and mySockets protected Object sockLock = new Object(); // Guards sockMgr and mySockets
private I2PSocketManager sockMgr; protected I2PSocketManager sockMgr;
protected List mySockets = new ArrayList(); protected List mySockets = new ArrayList();
protected Destination dest = null; protected Destination dest = null;