quiche: adjust quiche QUIC_IDLE_TIMEOUT to 60s

Set the `QUIC_IDLE_TIMEOUT` parameter to match ngtcp2 for consistency.
This commit is contained in:
trrui-huawei 2023-08-11 11:30:13 +08:00 committed by Daniel Stenberg
parent ce254fa96f
commit bcc51b76c5
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -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)