-
Notifications
You must be signed in to change notification settings - Fork 844
Add support for OCSP requests by GET method #10306
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
Merged
Merged
Conversation
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
This adds proxy.config.ssl.ocsp.request_mode. Co-authored-by: Jeff Elsloo <elsloo@apache.org>
Co-authored-by: Jeff Elsloo <elsloo@apache.org>
Member
Author
|
[approve ci autest] |
bneradt
requested changes
Sep 4, 2023
Contributor
|
Looks good. Thanks for working on the OCSP fetch. |
bneradt
requested changes
Sep 4, 2023
bneradt
approved these changes
Sep 11, 2023
cmcfarlen
pushed a commit
to cmcfarlen/trafficserver
that referenced
this pull request
Jun 3, 2024
This adds support for OCSP requests by GET method. Requests by GET method enables caching their responses. If proxy.config.ssl.ocsp.request_mode is set to 1, ATS uses GET method for OCSP requests if possible. If the encoded URL is going to be too long, it fallbacks to POST method. The setting is 0 by default (no behavior change). * Add a setting to make OCSP request by GET method This adds proxy.config.ssl.ocsp.request_mode. Co-authored-by: Jeff Elsloo <elsloo@apache.org> * Implement OCSP request by GET method Co-authored-by: Jeff Elsloo <elsloo@apache.org> * Include cstring header file * Use ink_string instead * Remove unnecessary static * Remove a repeat --------- Co-authored-by: Jeff Elsloo <elsloo@apache.org>
cmcfarlen
pushed a commit
to cmcfarlen/trafficserver
that referenced
this pull request
Jun 3, 2024
* commit '236b749b2b3cc746829ad534a7034ab7799d1b71': Allow origins to do TLS renegotiation (apache#10385) Remove deprecated debug output functions from 21 source files. (apache#9683) Fixes some make test build problems (apache#10402) Removes unused Errata functions from WCCP (apache#10380) Move InkAPI.cc into src/api (apache#10315) cmake: Generate files in rc, install the trafficserver script (apache#10367) Add support for OCSP requests by GET method (apache#10306) Preserve unmapped url regardless of need for remapping (apache#10304) Add TSVConnFdGet api (apache#10324) include/ts: comma on all last enum elements (apache#10400) cmake: Add remaining plugins without external deps (apache#10395) CID-1508974 (apache#10397) CID-1508987 (apache#10398) Coverity 1518564: fix off by one (apache#10401)
maskit
added a commit
to maskit/trafficserver
that referenced
this pull request
Aug 20, 2024
This is for apache#10627 and apache#10306.
maskit
added a commit
that referenced
this pull request
Aug 22, 2024
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.
This adds support of OCSP requests by GET method. Requests by GET method enables caching their responses.
If
proxy.config.ssl.ocsp.request_modeis set to 1, ATS uses GET method for OCSP requests if possible. If the encoded URL is going to be too long, it fallbacks to POST method. The setting is 0 by default (no behavior change).