Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

App or flow control limited #3238

Merged
merged 2 commits into from Nov 17, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions draft-ietf-quic-recovery.md
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