2005-12-19 jrandom
* I2PSnark logging, disconnect old inactive peers rather than new ones, memory usage reduction, better OOM handling, and a shared connection acceptor. * Cleaned up the Syndie blog page and the resulting filters (viewing a blog from the blog page shows threads started by the selected author, not those that they merely participate in)
This commit is contained in:
@ -109,4 +109,11 @@ public class I2PSocketFull implements I2PSocket {
|
||||
_connection = null;
|
||||
_listener = null;
|
||||
}
|
||||
public String toString() {
|
||||
Connection c = _connection;
|
||||
if (c == null)
|
||||
return super.toString();
|
||||
else
|
||||
return c.toString();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user