HTTP/3: insert count block timeout.

Previously, there was no timeout for a request stream blocked on insert count,
which could result in infinite wait.  Now client_header_timeout is set when
stream is first blocked.
This commit is contained in:
Roman Arutyunyan 2023-01-05 19:03:22 +04:00
parent 42e1233601
commit 1565a79f8a
1 changed files with 6 additions and 0 deletions

View File

@ -555,6 +555,12 @@ ngx_http_v3_process_request(ngx_event_t *rev)
break;
}
if (!rev->timer_set) {
cscf = ngx_http_get_module_srv_conf(r,
ngx_http_core_module);
ngx_add_timer(rev, cscf->client_header_timeout);
}
if (ngx_handle_read_event(rev, 0) != NGX_OK) {
ngx_http_close_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR);
}