From cde7ac7e5227fa9e805722cddc4378d21bfac671 Mon Sep 17 00:00:00 2001 From: jrandom Date: Sun, 24 Apr 2005 18:44:59 +0000 Subject: [PATCH] 2005-04-24 jrandom * Added a pool of PRNGs using a different synchronization technique, hopefully sufficient to work around IBM's PRNG bugs until we get our own Fortuna. * In the streaming lib, don't jack up the RTT on NACK, and have the window size bound the not-yet-ready messages to the peer, not the unacked message count (not sure yet whether this is worthwile). * Many additions to the messageHistory log. * Handle out of order tunnel fragment delivery (not an issue on the live net with TCP, but critical with UDP). --- .../java/src/net/i2p/router/client/ClientConnectionRunner.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router/java/src/net/i2p/router/client/ClientConnectionRunner.java b/router/java/src/net/i2p/router/client/ClientConnectionRunner.java index 833803885..40c96f2ac 100644 --- a/router/java/src/net/i2p/router/client/ClientConnectionRunner.java +++ b/router/java/src/net/i2p/router/client/ClientConnectionRunner.java @@ -229,7 +229,7 @@ public class ClientConnectionRunner { void disconnectClient(String reason) { if (_log.shouldLog(Log.CRIT)) _log.log(Log.CRIT, "Disconnecting the client (" - + _config.getDestination().calculateHash().toBase64().substring(0,4) + + _config + ": " + reason); DisconnectMessage msg = new DisconnectMessage(); msg.setReason(reason);