I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 2bfbe1ca authored by jrandom's avatar jrandom Committed by zzz
Browse files

logging (toss a unique ID onto the handler / inactivity threads)

parent 60584228
No related branches found
No related tags found
No related merge requests found
...@@ -64,8 +64,10 @@ public class I2PTunnelHTTPClient extends I2PTunnelClientBase implements Runnable ...@@ -64,8 +64,10 @@ public class I2PTunnelHTTPClient extends I2PTunnelClientBase implements Runnable
// this(localPort, l, ownDest, wwwProxy, (EventDispatcher)null); // this(localPort, l, ownDest, wwwProxy, (EventDispatcher)null);
// } // }
private static volatile long __clientId = 0;
public I2PTunnelHTTPClient(int localPort, Logging l, boolean ownDest, String wwwProxy, EventDispatcher notifyThis) { public I2PTunnelHTTPClient(int localPort, Logging l, boolean ownDest, String wwwProxy, EventDispatcher notifyThis) {
super(localPort, ownDest, l, notifyThis, "HTTPHandler"); super(localPort, ownDest, l, notifyThis, "HTTPHandler " + (++__clientId));
if (waitEventValue("openBaseClientResult").equals("error")) { if (waitEventValue("openBaseClientResult").equals("error")) {
notifyEvent("openHTTPClientResult", "error"); notifyEvent("openHTTPClientResult", "error");
...@@ -211,6 +213,7 @@ public class I2PTunnelHTTPClient extends I2PTunnelClientBase implements Runnable ...@@ -211,6 +213,7 @@ public class I2PTunnelHTTPClient extends I2PTunnelClientBase implements Runnable
} }
private static final long INACTIVITY_TIMEOUT = 120 * 1000; private static final long INACTIVITY_TIMEOUT = 120 * 1000;
private static volatile long __timeoutId = 0;
private class InactivityTimeoutThread extends I2PThread { private class InactivityTimeoutThread extends I2PThread {
...@@ -230,7 +233,8 @@ public class I2PTunnelHTTPClient extends I2PTunnelClientBase implements Runnable ...@@ -230,7 +233,8 @@ public class I2PTunnelHTTPClient extends I2PTunnelClientBase implements Runnable
_targetRequest = targetRequest; _targetRequest = targetRequest;
_useWWWProxy = useWWWProxy; _useWWWProxy = useWWWProxy;
_disabled = false; _disabled = false;
setName("InactivityThread"); long timeoutId = ++__timeoutId;
setName("InactivityThread " + timeoutId);
} }
public void disable() { public void disable() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment