Navigation Menu

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

Update PTO pseudocode to better match text #3461

Merged
merged 9 commits into from Mar 16, 2020
3 changes: 3 additions & 0 deletions draft-ietf-quic-recovery.md
Expand Up @@ -1143,11 +1143,14 @@ SetLossDetectionTimer():
return

if (server is at anti-amplification limit):
// The server's alarm is not set if nothing can be sent.
loss_detection_timer.cancel()
return

if (no ack-eliciting packets in flight &&
peer not awaiting address validation):
// There is nothing to detect lost and the server
// is not blocked by the anti-amplification limit.
ianswett marked this conversation as resolved.
Show resolved Hide resolved
loss_detection_timer.cancel()
return

Expand Down