-
Notifications
You must be signed in to change notification settings - Fork 205
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
Ack-eliciting, not inflight #2117
Conversation
draft-ietf-quic-recovery.md
Outdated
@@ -792,7 +792,7 @@ Pseudocode for SetLossDetectionTimer follows: | |||
SetLossDetectionTimer(): | |||
// Don't arm timer if there are no ack-eliciting packets | |||
// in flight. | |||
if (bytes_in_flight == 0): | |||
if (no ack-eliciting packets oustanding): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We never define what outstanding means, from what I can find, though we do use it in a few spots. In this case, I believe it should be "no ack-eliciting packets In-flight"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we use it below, which is why I used it here. I could change them both to "in flight" or leave them at outstanding
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I sent #2120 to remove existing uses of outstanding.
Issue noticed when reviewing PR #2117
draft-ietf-quic-recovery.md
Outdated
@@ -792,7 +792,7 @@ Pseudocode for SetLossDetectionTimer follows: | |||
SetLossDetectionTimer(): | |||
// Don't arm timer if there are no ack-eliciting packets | |||
// in flight. | |||
if (bytes_in_flight == 0): | |||
if (no ack-eliciting packets outstanding): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (no ack-eliciting packets outstanding): | |
if (no ack-eliciting packets in flight): |
d5ddc52
to
7dfe461
Compare
Closes #2093