forked from I2P_Developers/i2p.i2p
log tweak to help diagnose ServerSocket closed
This commit is contained in:
@@ -47,9 +47,9 @@ class ConnectionHandler {
|
||||
|
||||
public synchronized void setActive(boolean active) {
|
||||
// FIXME active=false this only kills for one thread in accept()
|
||||
// if they are more, they won't ket a poison packet.
|
||||
if (_log.shouldLog(Log.DEBUG))
|
||||
_log.debug("setActive(" + active + ") called");
|
||||
// if there are more, they won't get a poison packet.
|
||||
if (_log.shouldLog(Log.WARN))
|
||||
_log.warn("setActive(" + active + ") called, previously " + _active, new Exception("I did it"));
|
||||
// if starting, clear any old poison
|
||||
// if stopping, the accept() loop will clear any pending sockets
|
||||
if (active && !_active)
|
||||
|
@@ -1,3 +1,7 @@
|
||||
2015-03-25 zzz
|
||||
* i2ptunnel HTTP client: Replace all getBytes() calls
|
||||
with a Writer or getBytes("UTF-8") (ticket #457)
|
||||
|
||||
2015-03-24 zzz
|
||||
* Streaming: Throw I2PSocketException when connection is reset,
|
||||
display new error page in HTTP client (ticket #643)
|
||||
|
@@ -18,7 +18,7 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 11;
|
||||
public final static long BUILD = 12;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "-rc";
|
||||
|
Reference in New Issue
Block a user