-
Notifications
You must be signed in to change notification settings - Fork 542
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
Updated ACK_FREQUENCY according to draft-ietf-quic-ack-frequency-10 #4670
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #4670 +/- ##
==========================================
- Coverage 87.27% 86.58% -0.70%
==========================================
Files 56 56
Lines 17361 17378 +17
==========================================
- Hits 15152 15046 -106
- Misses 2209 2332 +123 ☔ View full report in Codecov by Sentry. |
Looks like CLOG needs to be updated again. |
|
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.
Really close!
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.
Copilot reviewed 2 out of 13 changed files in this pull request and generated no comments.
Files not reviewed (11)
- src/core/ack_tracker.c: Language not supported
- src/core/ack_tracker.h: Language not supported
- src/core/connection.c: Language not supported
- src/core/connection.h: Language not supported
- src/core/crypto_tls.c: Language not supported
- src/core/frame.c: Language not supported
- src/core/frame.h: Language not supported
- src/core/quicdef.h: Language not supported
- src/core/send.c: Language not supported
- src/core/unittest/FrameTest.cpp: Language not supported
- src/manifest/clog.sidecar: Language not supported
There are several test failures, especially on the Linux stress tests. Need to investigate.
Description
This PR updates the ACK_FREQUENCY frame to the latest draft. A new reordering threshold is added which indicates the maximum number of packets that can be out of order before an immediate acknowledgment (ACK) is triggered.
Testing
New Unit test cases have been added to test the reordering threshold logic.
Documentation
No