]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
h3: add 'attach' callback to protocol handlers
authorDaniel Stenberg <daniel@haxx.se>
Tue, 18 May 2021 14:21:08 +0000 (16:21 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 18 May 2021 22:29:09 +0000 (00:29 +0200)
Follow-up to 0c55fbab45be

Reviewed-by: Emil Engler
Closes #7090

lib/vquic/ngtcp2.c
lib/vquic/quiche.c

index 15184827abad26d9e146926795193a864ff6c223..7f076759b8f0e99838d840b5a48357e4bb5e4f7d 100644 (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 */
index 33d303d443bbcea9b599a1e41d3e7c56478d8dea..d0d04780ed01bc97a9828cd3cda2d95482995716 100644 (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 */