diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-11-08 20:55:15 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-11-09 08:17:38 +0100 |
commit | 5d57a79929e90c380a7f79392a4f3829db1235be (patch) | |
tree | 63386b62c0d75c22eb0c786e7c233b000ede2f2b /lib/vquic | |
parent | 374329d773e6ffd0ea647edc35ac759888ad4643 (diff) | |
download | curl-5d57a79929e90c380a7f79392a4f3829db1235be.tar.gz |
ngtcp2: adapt to recent nghttp3 updates
'reset_stream' was added to the nghttp3_conn_callbacks struct
Closes #6185
Diffstat (limited to 'lib/vquic')
-rw-r--r-- | lib/vquic/ngtcp2.c | 1 |
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) |