-
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
No octets #1921
No octets #1921
Conversation
QUIC's congestion control is based on TCP NewReno {{?RFC6582}}. NewReno is | ||
a congestion window based congestion control. QUIC specifies the congestion | ||
QUIC's congestion control is based on TCP NewReno {{?RFC6582}}. NewReno is a | ||
congestion window based congestion control. QUIC specifies the congestion |
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.
congestion control algorithm?
draft-ietf-quic-recovery.md
Outdated
@@ -965,8 +964,8 @@ losses or increases in the ECN-CE counter. | |||
## Tail Loss Probe | |||
|
|||
A TLP packet MUST NOT be blocked by the sender's congestion controller. The | |||
sender MUST however count these bytes as additional bytes-in-flight, since a TLP | |||
adds network load without establishing packet loss. | |||
sender MUST however count TLP packets against bytes-in-flight, since a TLP adds |
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.
inconsistent use of bytes-in-flight vs bytes_in_flight - technically one might be for text the other for pseudo code.
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.
Good point, how about we remove the - here, because it's spelled "bytes in flight" everywhere else.
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.
Thanks Martin, this looks great.
draft-ietf-quic-recovery.md
Outdated
@@ -965,8 +964,8 @@ losses or increases in the ECN-CE counter. | |||
## Tail Loss Probe | |||
|
|||
A TLP packet MUST NOT be blocked by the sender's congestion controller. The | |||
sender MUST however count these bytes as additional bytes-in-flight, since a TLP | |||
adds network load without establishing packet loss. | |||
sender MUST however count TLP packets against bytes-in-flight, since a TLP adds |
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.
Good point, how about we remove the - here, because it's spelled "bytes in flight" everywhere else.
Co-Authored-By: martinthomson <martin.thomson@gmail.com>
Merged manually. |
This will get rotty pretty quickly, but the changes are fairly easy to make mechanically for the most part.