From a4129b67368d5ee374e8029f19b29ba194c1375d Mon Sep 17 00:00:00 2001 From: ianswett Date: Sat, 16 Nov 2019 15:11:10 -0500 Subject: [PATCH 1/2] App or flow control limited Fixes #3236 --- draft-ietf-quic-recovery.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/draft-ietf-quic-recovery.md b/draft-ietf-quic-recovery.md index 235f368a05..d236483522 100644 --- a/draft-ietf-quic-recovery.md +++ b/draft-ietf-quic-recovery.md @@ -1363,9 +1363,9 @@ acked_packet from sent_packets. if (InCongestionRecovery(acked_packet.time_sent)): // Do not increase congestion window in recovery period. return - if (IsAppLimited()): + if (IsAppOrFowControlLimited()): // Do not increase congestion_window if application - // limited. + // limited or flow control limited. return if (congestion_window < ssthresh): // Slow start. From 7e83e767057da787f5690fc93abaca9feb611992 Mon Sep 17 00:00:00 2001 From: ianswett Date: Sat, 16 Nov 2019 19:50:16 -0500 Subject: [PATCH 2/2] spelling --- draft-ietf-quic-recovery.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/draft-ietf-quic-recovery.md b/draft-ietf-quic-recovery.md index d236483522..f962bc144d 100644 --- a/draft-ietf-quic-recovery.md +++ b/draft-ietf-quic-recovery.md @@ -1363,7 +1363,7 @@ acked_packet from sent_packets. if (InCongestionRecovery(acked_packet.time_sent)): // Do not increase congestion window in recovery period. return - if (IsAppOrFowControlLimited()): + if (IsAppOrFlowControlLimited()): // Do not increase congestion_window if application // limited or flow control limited. return