From 5d57a79929e90c380a7f79392a4f3829db1235be Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sun, 8 Nov 2020 20:55:15 +0100 Subject: [PATCH] ngtcp2: adapt to recent nghttp3 updates 'reset_stream' was added to the nghttp3_conn_callbacks struct Closes #6185 --- lib/vquic/ngtcp2.c | 1 + 1 file changed, 1 insertion(+) 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)