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

Initial PTO is 3*kInitialRtt, not 2*kInitialRtt #4262

Closed
wants to merge 1 commit into from
Closed
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-transport.md
Expand Up @@ -2254,11 +2254,11 @@ abandons its attempt to validate the path.
Endpoints SHOULD abandon path validation based on a timer. When setting this
timer, implementations are cautioned that the new path could have a longer
round-trip time than the original. A value of three times the larger of the
current Probe Timeout (PTO) or the initial timeout (that is, 2*kInitialRtt) as
current Probe Timeout (PTO) or the initial timeout (that is, 3*kInitialRtt) as
defined in {{QUIC-RECOVERY}} is RECOMMENDED. That is:

~~~
validation_timeout = max(3*PTO, 6*kInitialRtt)
validation_timeout = max(3*PTO, 9*kInitialRtt)
~~~

This timeout allows for multiple PTOs to expire prior to failing path
Expand Down