-
Notifications
You must be signed in to change notification settings - Fork 3k
Ingela/ssl/session tickets and early data/otp 19940 #10583
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
base: maint
Are you sure you want to change the base?
Ingela/ssl/session tickets and early data/otp 19940 #10583
Conversation
25fab90 to
e2752dd
Compare
CT Test Results 2 files 66 suites 26m 0s ⏱️ Results for commit c6988db. ♻️ This comment has been updated with latest results. To speed up review, make sure that you have read Contributing to Erlang/OTP and that all checks pass. See the TESTING and DEVELOPMENT HowTo guides for details about how to run test locally. Artifacts
// Erlang/OTP Github Action Bot |
If server has early_data disabled it should not include an early_data extension in its session tickets. close erlang#10567 Also fix legacy default value typo, which allows larger handshakes than previous code in legacy versions. Right should be right!
e2752dd to
c6988db
Compare
|
Use the max size to control the extension is much nicer. |
| ServerOpts = [{session_tickets, ServerTicketMode}, {early_data, disabled}, | ||
| {versions, ['tlsv1.2','tlsv1.3']}|ServerOpts0], | ||
| ServerOpts = [{session_tickets, ServerTicketMode}, | ||
| {versions, ['tlsv1.2','tlsv1.3']},{early_data, enabled} |ServerOpts0], |
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.
is {early_data, disabled} + lack of extension verified somewhere, some existing testcase not changed by this PR?
Fixes #10567