-
Notifications
You must be signed in to change notification settings - Fork 581
Resend Close Frames #5107
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
Resend Close Frames #5107
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #5107 +/- ##
==========================================
- Coverage 87.20% 86.81% -0.40%
==========================================
Files 59 59
Lines 18027 18037 +10
==========================================
- Hits 15720 15658 -62
- Misses 2307 2379 +72 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
@@ -5,6 +5,13 @@ | |||
|
|||
--*/ | |||
|
|||
// | |||
// Private flag of the QUIC_CONNECTION_SHUTDOWN_FLAGS enum used for indicating | |||
// the type of error code being passed in. Not exposed to apps because they |
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.
nti:
// the type of error code being passed in. Not exposed to apps because they | |
// a QUIC_STATUS is being passed (and not a QUIC_ERROR). | |
// Not exposed to apps because they |
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.
The "not a QUIC_ERROR" isn't actually correct either 😄 I think I'd rather just leave it as is for now and not write a massive comment explaining the various types of errors in MsQuic
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.
Slight nitpick to make the comment for precise and readily useful, good to go otherwise.
Description
Resend the connection close if more data is received after shutdown. Fixes #4933.
Testing
CI/CD
Documentation
N/A