From 2bfbe1ca272470b217c624ac3c12973a8c55c945 Mon Sep 17 00:00:00 2001 From: jrandom <jrandom> Date: Mon, 3 May 2004 03:36:38 +0000 Subject: [PATCH] logging (toss a unique ID onto the handler / inactivity threads) --- .../java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java index de43355a70..0f09fa3a20 100644 --- a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java +++ b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java @@ -64,8 +64,10 @@ public class I2PTunnelHTTPClient extends I2PTunnelClientBase implements Runnable // 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) { - super(localPort, ownDest, l, notifyThis, "HTTPHandler"); + super(localPort, ownDest, l, notifyThis, "HTTPHandler " + (++__clientId)); if (waitEventValue("openBaseClientResult").equals("error")) { notifyEvent("openHTTPClientResult", "error"); @@ -211,6 +213,7 @@ public class I2PTunnelHTTPClient extends I2PTunnelClientBase implements Runnable } private static final long INACTIVITY_TIMEOUT = 120 * 1000; + private static volatile long __timeoutId = 0; private class InactivityTimeoutThread extends I2PThread { @@ -230,7 +233,8 @@ public class I2PTunnelHTTPClient extends I2PTunnelClientBase implements Runnable _targetRequest = targetRequest; _useWWWProxy = useWWWProxy; _disabled = false; - setName("InactivityThread"); + long timeoutId = ++__timeoutId; + setName("InactivityThread " + timeoutId); } public void disable() { -- GitLab