From: Daniel Stenberg Date: Sun, 8 Nov 2020 19:55:15 +0000 (+0100) Subject: ngtcp2: adapt to recent nghttp3 updates X-Git-Tag: curl-7_74_0~80 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d57a79929e90c380a7f79392a4f3829db1235be;p=thirdparty%2Fcurl.git ngtcp2: adapt to recent nghttp3 updates 'reset_stream' was added to the nghttp3_conn_callbacks struct Closes #6185 --- diff --git a/lib/vquic/ngtcp2.c b/lib/vquic/ngtcp2.c index d6837b18c3..cf2aeb4740 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)