comparison src/http/ngx_http_request.c @ 8271:8e54a17dabee quic

Respect QUIC max_idle_timeout.
author Roman Arutyunyan <arut@nginx.com>
date Mon, 23 Mar 2020 21:20:20 +0300
parents e9891e8ee975
children 7f0981be07c4
comparison
equal deleted inserted replaced
8270:c87a13514abc 8271:8e54a17dabee
345 ngx_http_ssl_srv_conf_t *sscf; 345 ngx_http_ssl_srv_conf_t *sscf;
346 346
347 v3cf = ngx_http_get_module_srv_conf(hc->conf_ctx, ngx_http_v3_module); 347 v3cf = ngx_http_get_module_srv_conf(hc->conf_ctx, ngx_http_v3_module);
348 sscf = ngx_http_get_module_srv_conf(hc->conf_ctx, ngx_http_ssl_module); 348 sscf = ngx_http_get_module_srv_conf(hc->conf_ctx, ngx_http_ssl_module);
349 349
350 ngx_quic_run(c, &sscf->ssl, &v3cf->quic, 350 ngx_quic_run(c, &sscf->ssl, &v3cf->quic, ngx_http_quic_stream_handler);
351 c->listening->post_accept_timeout,
352 ngx_http_quic_stream_handler);
353 return; 351 return;
354 } 352 }
355 #endif 353 #endif
356 354
357 #if (NGX_HTTP_V2) 355 #if (NGX_HTTP_V2)