-
Notifications
You must be signed in to change notification settings - Fork 857
Updated testing and fixed bug in SSLSNIConfig #12248
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
Changes from all commits
c40774e
98c871e
0e7f969
39511cb
ff9523a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -36,3 +36,16 @@ sni: | |
| http2_buffer_water_mark: 256 | ||
| - fqdn: foo.bar.com | ||
| http2: false | ||
|
|
||
| # test with mixed-case | ||
| - fqdn: "MiXeDcAsE.foo.com" | ||
| http2: true | ||
| http2_buffer_water_mark: 256 | ||
| inbound_port_ranges: 31337 | ||
|
|
||
| # test with mixed-case glob | ||
| - fqdn: "*.MiXeDcAsE.com" | ||
| http2: false | ||
|
|
||
| # test glob in the middle, this will be an exact match | ||
| - fqdn: "cat.*.com" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Discussion around the #9736, we concluded don't allow this. This should be error.
https://docs.trafficserver.apache.org/en/latest/admin-guide/files/sni.yaml.en.html
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is for these tests for invalid? |
||
Uh oh!
There was an error while loading. Please reload this page.
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.
This is the bug fix. ⬆️
The rest of the changes are more tests and an updated config.
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.
This makes sense