From f6ff74af1683375b6b1700b01b9e4a88f4914a96 Mon Sep 17 00:00:00 2001 From: jrandom Date: Tue, 9 Nov 2004 13:33:11 +0000 Subject: [PATCH] oops, properly choke the congestion detection for resend --- .../streaming/java/src/net/i2p/client/streaming/Connection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/streaming/java/src/net/i2p/client/streaming/Connection.java b/apps/streaming/java/src/net/i2p/client/streaming/Connection.java index ee3b1627a..2ab965993 100644 --- a/apps/streaming/java/src/net/i2p/client/streaming/Connection.java +++ b/apps/streaming/java/src/net/i2p/client/streaming/Connection.java @@ -584,7 +584,7 @@ public class Connection { // shrink the window int newWindowSize = getOptions().getWindowSize(); - _lastCongestionSeenAt = newWindowSize; + congestionOccurred(); newWindowSize /= 2; if (newWindowSize <= 0) newWindowSize = 1;