mirror of
https://github.com/curl/curl.git
synced 2026-08-25 14:53:34 +03:00
conn: add 'attach' to protocol handler, make libssh2 use it
The libssh2 backend has SSH session associated with the connection but the callback context is the easy handle, so when a connection gets attached to a transfer, the protocol handler now allows for a custom function to get used to set things up correctly. Reported-by: Michael O'Farrell Fixes #6898 Closes #7078
This commit is contained in:
parent
904b27d18d
commit
0c55fbab45
24 changed files with 66 additions and 0 deletions
|
|
@ -319,6 +319,7 @@ static const struct Curl_handler Curl_handler_http2 = {
|
|||
http2_disconnect, /* disconnect */
|
||||
ZERO_NULL, /* readwrite */
|
||||
http2_conncheck, /* connection_check */
|
||||
ZERO_NULL, /* attach connection */
|
||||
PORT_HTTP, /* defport */
|
||||
CURLPROTO_HTTP, /* protocol */
|
||||
CURLPROTO_HTTP, /* family */
|
||||
|
|
@ -341,6 +342,7 @@ static const struct Curl_handler Curl_handler_http2_ssl = {
|
|||
http2_disconnect, /* disconnect */
|
||||
ZERO_NULL, /* readwrite */
|
||||
http2_conncheck, /* connection_check */
|
||||
ZERO_NULL, /* attach connection */
|
||||
PORT_HTTP, /* defport */
|
||||
CURLPROTO_HTTPS, /* protocol */
|
||||
CURLPROTO_HTTP, /* family */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue