diff options
author | Roman Arutyunyan <arut@nginx.com> | 2020-03-23 21:20:20 +0300 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2020-03-23 21:20:20 +0300 |
commit | 5ac5e51fdfe68e8b11f8c7abd2ce361062f68e54 (patch) | |
tree | ab1290524b9a99dc37162c4b45bb9bbad98ad2f9 /src/http/v3/ngx_http_v3_module.c | |
parent | 9975b088bbd24af0f0543bb921a1313a285da319 (diff) | |
download | nginx-5ac5e51fdfe68e8b11f8c7abd2ce361062f68e54.tar.gz nginx-5ac5e51fdfe68e8b11f8c7abd2ce361062f68e54.zip |
Respect QUIC max_idle_timeout.
Diffstat (limited to 'src/http/v3/ngx_http_v3_module.c')
-rw-r--r-- | src/http/v3/ngx_http_v3_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/v3/ngx_http_v3_module.c b/src/http/v3/ngx_http_v3_module.c index 385838df4..45bfc5b1c 100644 --- a/src/http/v3/ngx_http_v3_module.c +++ b/src/http/v3/ngx_http_v3_module.c @@ -229,7 +229,7 @@ ngx_http_v3_merge_srv_conf(ngx_conf_t *cf, void *parent, void *child) ngx_http_v3_srv_conf_t *conf = child; ngx_conf_merge_msec_value(conf->quic.max_idle_timeout, - prev->quic.max_idle_timeout, 10000); + prev->quic.max_idle_timeout, 60000); // > 2 ^ 14 is invalid ngx_conf_merge_msec_value(conf->quic.max_ack_delay, |