Skip to content

Commit

Permalink
App or flow control limited (#3238)
Browse files Browse the repository at this point in the history
* App or flow control limited

Fixes #3236

* spelling
  • Loading branch information
ianswett authored and martinthomson committed Nov 19, 2019
1 parent 110fcb3 commit 3710ed6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions draft-ietf-quic-recovery.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 (IsAppOrFlowControlLimited()):
// Do not increase congestion_window if application
// limited.
// limited or flow control limited.
return
if (congestion_window < ssthresh):
// Slow start.
Expand Down

0 comments on commit 3710ed6

Please sign in to comment.