From: trrui-huawei Date: Fri, 11 Aug 2023 03:30:13 +0000 (+0800) Subject: quiche: adjust quiche `QUIC_IDLE_TIMEOUT` to 60s X-Git-Tag: curl-8_3_0~158 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bcc51b76c5e3935646e394faa31a7f7fdb53f7d5;p=thirdparty%2Fcurl.git quiche: adjust quiche `QUIC_IDLE_TIMEOUT` to 60s Set the `QUIC_IDLE_TIMEOUT` parameter to match ngtcp2 for consistency. --- diff --git a/lib/vquic/curl_quiche.c b/lib/vquic/curl_quiche.c index b43a078c9d..298439a247 100644 --- a/lib/vquic/curl_quiche.c +++ b/lib/vquic/curl_quiche.c @@ -56,7 +56,7 @@ /* #define DEBUG_QUICHE */ #define QUIC_MAX_STREAMS (100) -#define QUIC_IDLE_TIMEOUT (5 * 1000) /* milliseconds */ +#define QUIC_IDLE_TIMEOUT (60 * 1000) /* milliseconds */ #define H3_STREAM_WINDOW_SIZE (128 * 1024) #define H3_STREAM_CHUNK_SIZE (16 * 1024)