1
0
mirror of https://github.com/moparisthebest/curl synced 2025-03-03 02:41:59 -05:00

h3: add 'attach' callback to protocol handlers

Follow-up to 0c55fbab45be

Reviewed-by: Emil Engler
Closes #7090
This commit is contained in:
Daniel Stenberg 2021-05-18 16:21:08 +02:00
parent 7b6d771a19
commit b1dded68e3
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
2 changed files with 2 additions and 0 deletions

View File

@ -934,6 +934,7 @@ static const struct Curl_handler Curl_handler_http3 = {
ng_disconnect, /* disconnect */
ZERO_NULL, /* readwrite */
ng_conncheck, /* connection_check */
ZERO_NULL, /* attach connection */
PORT_HTTP, /* defport */
CURLPROTO_HTTPS, /* protocol */
CURLPROTO_HTTP, /* family */

View File

@ -157,6 +157,7 @@ static const struct Curl_handler Curl_handler_http3 = {
quiche_disconnect, /* disconnect */
ZERO_NULL, /* readwrite */
quiche_conncheck, /* connection_check */
ZERO_NULL, /* attach connection */
PORT_HTTP, /* defport */
CURLPROTO_HTTPS, /* protocol */
CURLPROTO_HTTP, /* family */