From: Daniel Stenberg Date: Wed, 28 Aug 2019 12:39:07 +0000 (+0200) Subject: ngtcp2: on h3 stream close, call expire X-Git-Tag: curl-7_66_0~32 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7bac3135dfb0a71d367894b25c1debfe4fb54106;p=thirdparty%2Fcurl.git ngtcp2: on h3 stream close, call expire ... to trigger a new read to detect the stream close! Closes #4275 --- diff --git a/lib/vquic/ngtcp2.c b/lib/vquic/ngtcp2.c index 19e4a8023c..d98be181c5 100644 --- a/lib/vquic/ngtcp2.c +++ b/lib/vquic/ngtcp2.c @@ -703,7 +703,7 @@ static int cb_h3_stream_close(nghttp3_conn *conn, int64_t stream_id, fprintf(stderr, "cb_h3_stream_close CALLED\n"); stream->closed = TRUE; - + Curl_expire(data, 0, EXPIRE_QUIC); return 0; }