Replies: 1 comment 9 replies
-
The documentation is wrong. It should be "silently shut down" instead of "gracefully shut down". Thanks for the find! |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The documentation of the
IdleTimeout
setting explains that the connection is closed gracefully if the connection is idle afterIdleTimeout
. Is this really correct?The Quic's spec specifies that the connection should be silently closed if it's idle. The msquic implementation also appears to perform a silent close
msquic/src/core/connection.c
Line 6151 in 4bcd6e8
As written today, it sounds like the
IdleTimeout
is about gracefully closing inactive connections but afaict it's about detecting a connection loss when the connection has outstanding packets waiting to be ACKed. Is this correct?Beta Was this translation helpful? Give feedback.
All reactions