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/ngx_http_request.c | |
parent | 9975b088bbd24af0f0543bb921a1313a285da319 (diff) | |
download | nginx-5ac5e51fdfe68e8b11f8c7abd2ce361062f68e54.tar.gz nginx-5ac5e51fdfe68e8b11f8c7abd2ce361062f68e54.zip |
Respect QUIC max_idle_timeout.
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index 6c9fdc543..acd708cf6 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -347,9 +347,7 @@ ngx_http_init_connection(ngx_connection_t *c) v3cf = ngx_http_get_module_srv_conf(hc->conf_ctx, ngx_http_v3_module); sscf = ngx_http_get_module_srv_conf(hc->conf_ctx, ngx_http_ssl_module); - ngx_quic_run(c, &sscf->ssl, &v3cf->quic, - c->listening->post_accept_timeout, - ngx_http_quic_stream_handler); + ngx_quic_run(c, &sscf->ssl, &v3cf->quic, ngx_http_quic_stream_handler); return; } #endif |