From: Daniel Stenberg Date: Tue, 18 May 2021 14:21:08 +0000 (+0200) Subject: h3: add 'attach' callback to protocol handlers X-Git-Tag: curl-7_77_0~33 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b1dded68e3405c51ff89f2c310d67eacc092e272;p=thirdparty%2Fcurl.git h3: add 'attach' callback to protocol handlers Follow-up to 0c55fbab45be Reviewed-by: Emil Engler Closes #7090 --- diff --git a/lib/vquic/ngtcp2.c b/lib/vquic/ngtcp2.c index 15184827ab..7f076759b8 100644 --- a/lib/vquic/ngtcp2.c +++ b/lib/vquic/ngtcp2.c @@ -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 */ diff --git a/lib/vquic/quiche.c b/lib/vquic/quiche.c index 33d303d443..d0d04780ed 100644 --- a/lib/vquic/quiche.c +++ b/lib/vquic/quiche.c @@ -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 */