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

Change idle_timeout to max_idle_timeout #3099

Merged
merged 24 commits into from
Jan 21, 2020
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
61a3725
Idle timeout indicates you will timeout then
ianswett Oct 16, 2019
dc5b220
Update draft-ietf-quic-transport.md
ianswett Oct 16, 2019
2537a1a
Martin's suggestion and some reordering
ianswett Oct 29, 2019
61dcaad
Update draft-ietf-quic-transport.md
ianswett Oct 29, 2019
6fd0ac8
Update draft-ietf-quic-transport.md
ianswett Oct 29, 2019
e4dd819
Kazuho's suggestions
ianswett Oct 29, 2019
2234623
Update draft-ietf-quic-transport.md
ianswett Nov 1, 2019
11d8da8
Update draft-ietf-quic-transport.md
ianswett Nov 1, 2019
508413d
Update draft-ietf-quic-transport.md
ianswett Nov 1, 2019
e0d76ce
Update draft-ietf-quic-transport.md
ianswett Nov 1, 2019
48f04d6
Update draft-ietf-quic-transport.md
ianswett Nov 1, 2019
a7232f1
Update draft-ietf-quic-transport.md
ianswett Nov 2, 2019
ec80c86
Update draft-ietf-quic-transport.md
ianswett Nov 2, 2019
cd47d62
Update draft-ietf-quic-transport.md
ianswett Nov 2, 2019
7a6d513
Update draft-ietf-quic-transport.md
ianswett Nov 2, 2019
0bfcf11
Update draft-ietf-quic-transport.md
ianswett Nov 2, 2019
210821b
Merge branch 'master' into ianswett-symmetric-timeout
ianswett Nov 2, 2019
07d63d9
Jana's comment
ianswett Nov 3, 2019
e74856d
Update draft-ietf-quic-transport.md
ianswett Nov 18, 2019
581a368
Marten's suggestion
ianswett Nov 20, 2019
875de3f
Rebuild
ianswett Nov 20, 2019
774bc68
Use idle timer more directly
martinthomson Dec 11, 2019
c559540
wrap
martinthomson Dec 11, 2019
a203af6
Merge branch 'master' into ianswett-symmetric-timeout
martinthomson Jan 21, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions draft-ietf-quic-transport.md
Original file line number Diff line number Diff line change
Expand Up @@ -2344,9 +2344,9 @@ source address.
## Idle Timeout {#idle-timeout}

If the idle timeout is enabled by either peer, a connection is silently closed
and its state is discarded when it remains idle for longer than the
max_idle_timeout (see {{transport-parameter-definitions}}) and three times the
current Probe Timeout (PTO).
and its state is discarded when it remains idle for longer than the minimum of
the max_idle_timeouts (see {{transport-parameter-definitions}}) and three times
the current Probe Timeout (PTO).

Each endpoint advertises a max_idle_timeout, but the effective value
at an endpoint is computed as the minimum of the two advertised values. By
Expand Down