summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-11-08 20:55:15 +0100
committerDaniel Stenberg <daniel@haxx.se>2020-11-08 20:55:15 +0100
commitd59616bf2e97ebe74568524972db1b23396587b8 (patch)
tree63386b62c0d75c22eb0c786e7c233b000ede2f2b
parent374329d773e6ffd0ea647edc35ac759888ad4643 (diff)
downloadcurl-bagder/ngtcp2-nghttp3-sync.tar.gz
ngtcp2: adapt to recent nghttp3 updatesbagder/ngtcp2-nghttp3-sync
'reset_stream' was added to the nghttp3_conn_callbacks struct
-rw-r--r--lib/vquic/ngtcp2.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/vquic/ngtcp2.c b/lib/vquic/ngtcp2.c
index d6837b18c..cf2aeb474 100644
--- a/lib/vquic/ngtcp2.c
+++ b/lib/vquic/ngtcp2.c
@@ -1163,6 +1163,7 @@ static nghttp3_conn_callbacks ngh3_callbacks = {
cb_h3_send_stop_sending,
NULL, /* push_stream */
NULL, /* end_stream */
+ NULL, /* reset_stream */
};
static int init_ngh3_conn(struct quicsocket *qs)