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

use max_ack_delay = 0 before receving the TPs #2646

Merged
Merged
Changes from 1 commit
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
13 changes: 6 additions & 7 deletions draft-ietf-quic-transport.md
Expand Up @@ -4173,9 +4173,8 @@ ack_delay_exponent (0x000a):

: The ACK delay exponent is an integer value indicating an
exponent used to decode the ACK Delay field in the ACK frame ({{frame-ack}}).
If this value is absent, a default value of 3 is assumed
(indicating a multiplier of 8). The default value is also used for ACK frames
that are sent in Initial and Handshake packets. Values above 20 are invalid.
If this value is absent, a default value of 3 is assumed (indicating a
multiplier of 8). Values above 20 are invalid.

max_ack_delay (0x000b):

Expand Down Expand Up @@ -4330,10 +4329,10 @@ ACK Delay:
in the Largest Acknowledged field, was received by this peer. The value of
the ACK Delay field is scaled by multiplying the encoded value by 2 to the
power of the value of the `ack_delay_exponent` transport parameter set by the
sender of the ACK frame. The `ack_delay_exponent` defaults to 3, or a
multiplier of 8 (see {{transport-parameter-definitions}}). Scaling in this
fashion allows for a larger range of values with a shorter encoding at the
cost of lower resolution.
sender of the ACK frame (see {{transport-parameter-definitions}}). Scaling in
this fashion allows for a larger range of values with a shorter encoding at
the cost of lower resolution. Because the receiver doesn't use the ACK Delay
for Initial and Handshake packets, a sender SHOULD send a value of 0.

ACK Range Count:

Expand Down