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

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

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).
parent b2f0d17e
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
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