Open
Conversation
|
Code coverage summary for 978cc7c: ✅ Region coverage 74% passes |
xv-thomas-leong
previously approved these changes
Feb 24, 2026
in DTLS 1.2 and 1.3
…_READY handling DTLS 1.3 does NOT support secure renegotiation, but APP_DATA_READY CAN still be returned in DTLS 1.3. The check would have prevented proper handling of APP_DATA_READY in DTLS 1.3 Note: Making DTLS 1.3 to return APP_DATA_READY seems rare during handshake and it is difficult to trigger reliably in unit tests
I missed updating the version when I merged this PR #225
48c15e6 to
ad88798
Compare
🚀 Release Plan
|
xv-thomas-leong
approved these changes
Feb 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Wolfssl team when discussing for another bug, discovered that we handle app_data only when secure_negotiation is enabled. But APP_DATA can be returned for DTLS1.3 which does not have secure renog
At first, APP_DATA was being used only by DTLS1.2 secure negotiation, but now it has been used in other versions like DTLS1.3.
Ref:
https://github.com/wolfSSL/wolfssl/pull/9539/changes