From b1dded68e3405c51ff89f2c310d67eacc092e272 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 18 May 2021 16:21:08 +0200 Subject: [PATCH] h3: add 'attach' callback to protocol handlers Follow-up to 0c55fbab45be Reviewed-by: Emil Engler Closes #7090 --- lib/vquic/ngtcp2.c | 1 + lib/vquic/quiche.c | 1 + 2 files changed, 2 insertions(+) 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 */ -- 2.47.3