-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
vtls internal api update, ssl filter state local #9919
Closed
Closed
Conversation
This file contains 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 comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
icing
force-pushed
the
cf-vtls
branch
5 times, most recently
from
November 19, 2022 13:39
fd69cff
to
62534b7
Compare
bagder
reviewed
Nov 20, 2022
icing
force-pushed
the
cf-vtls
branch
3 times, most recently
from
November 21, 2022 14:54
79caf93
to
6b4d3f9
Compare
…in filters. - almost all backend calls pass the Curl_cfilter intance instead of connectdata+sockindex - ssl_connect_data is remove from struct connectdata and made internal to vtls - ssl_connect_data is allocated in the added filter, kept at cf->ctx - added function to let a ssl filter access its ssl_primary_config and ssl_config_data this selects the propert subfields in conn and data, for filters added as plain or proxy - adjusted all backends to use the changed api - adjusted all backends to access config data via the exposed functions, no longer using conn or data directly cfilter renames for clear purpose: - methods `Curl_conn_*(data, conn, sockindex)` work on the complete filter chain at `sockindex` and connection `conn`. - methods `Curl_cf_*(cf, ...)` work on a specific Curl_cfilter instance. - methods `Curl_conn_cf()` work on/with filter instances at a connection. - rebased and resolved some naming conflicts - hostname validation (und session lookup) on SECONDARY use the same name as on FIRST (again). new debug macros and removing connectdata from function signatures where not needed. adapting schannel for new Curl_read_plain paramter.
bagder
approved these changes
Nov 22, 2022
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.
Let's do this!
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Jan 15, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Jan 15, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Jan 16, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Jan 17, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Jan 17, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Jan 17, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Jan 17, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Jan 17, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Jan 18, 2025
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.
PR to trigger CI tests
Change of vtls internal API to backends. Localization of state data in filters.