mirror of
https://github.com/curl/curl.git
synced 2026-06-03 16:04:15 +03:00
ngtcp2: fix QUIC_IDLE_TIMEOUT
QUIC_IDLE_TIMEOUT should be of type ngtcp2_duration which is nanoseconds resolution. Closes #8678
This commit is contained in:
parent
4a8f6869db
commit
1b1443a8ed
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ struct h3out {
|
|||
|
||||
#define QUIC_MAX_STREAMS (256*1024)
|
||||
#define QUIC_MAX_DATA (1*1024*1024)
|
||||
#define QUIC_IDLE_TIMEOUT 60000 /* milliseconds */
|
||||
#define QUIC_IDLE_TIMEOUT (60*NGTCP2_SECONDS)
|
||||
|
||||
#ifdef USE_OPENSSL
|
||||
#define QUIC_CIPHERS \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue