vtls internal api update, ssl filter state local#9919
Closed
icing wants to merge 1 commit intocurl:masterfrom
Closed
vtls internal api update, ssl filter state local#9919icing wants to merge 1 commit intocurl:masterfrom
icing wants to merge 1 commit intocurl:masterfrom
Conversation
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.
fd69cff to
62534b7
Compare
bagder
reviewed
Nov 20, 2022
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.
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
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Jan 20, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Jan 21, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Jan 22, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Feb 3, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Feb 5, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Feb 17, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Feb 17, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Feb 17, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Feb 17, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Feb 19, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Feb 20, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Feb 21, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Feb 21, 2025
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Feb 21, 2025
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.
PR to trigger CI tests
Change of vtls internal API to backends. Localization of state data in filters.