summaryrefslogtreecommitdiff
path: root/lib/vquic/ngtcp2.h
diff options
context:
space:
mode:
authorJay Satiro <raysatiro@yahoo.com>2021-02-01 02:40:42 -0500
committerDaniel Stenberg <daniel@haxx.se>2021-02-02 08:19:12 +0100
commitfc9d3444d1a72e2e1865006d13fe8e604abba4a2 (patch)
tree04bdd67d72f46febd9b716196b26c89ceafd4644 /lib/vquic/ngtcp2.h
parent2c4b338f7e45f1ef8d13211a1730f167014c0c58 (diff)
downloadcurl-fc9d3444d1a72e2e1865006d13fe8e604abba4a2.tar.gz
ngtcp2: Fix build error due to change in ngtcp2_settings
- Separate ngtcp2_transport_params. ngtcp2/ngtcp2@05d7adc made ngtcp2_transport_params separate from ngtcp2_settings. ngtcp2 master is required to build curl with http3 support. Closes #6554
Diffstat (limited to 'lib/vquic/ngtcp2.h')
-rw-r--r--lib/vquic/ngtcp2.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/vquic/ngtcp2.h b/lib/vquic/ngtcp2.h
index 102ff22e1..8b6f57029 100644
--- a/lib/vquic/ngtcp2.h
+++ b/lib/vquic/ngtcp2.h
@@ -48,6 +48,7 @@ struct quicsocket {
ngtcp2_cid scid;
uint32_t version;
ngtcp2_settings settings;
+ ngtcp2_transport_params transport_params;
#ifdef USE_OPENSSL
SSL_CTX *sslctx;
SSL *ssl;