From: Sergey Kandaurov Date: Tue, 14 Nov 2023 11:26:02 +0000 (+0400) Subject: HTTP/3: added Huffman decoding error logging. X-Git-Tag: release-1.25.4~26 X-Git-Url: http://www.kaiwu.me/postgresql/commit/static/gitweb.js?a=commitdiff_plain;h=f9a25736fd049075baf76a35628d2351b20f8ab8;p=nginx.git HTTP/3: added Huffman decoding error logging. --- diff --git a/src/http/v3/ngx_http_v3_parse.c b/src/http/v3/ngx_http_v3_parse.c index c51a486c3..568816323 100644 --- a/src/http/v3/ngx_http_v3_parse.c +++ b/src/http/v3/ngx_http_v3_parse.c @@ -650,6 +650,8 @@ ngx_http_v3_parse_literal(ngx_connection_t *c, ngx_http_v3_parse_literal_t *st, st->length == 1, c->log) != NGX_OK) { + ngx_log_error(NGX_LOG_INFO, c->log, 0, + "client sent invalid encoded field line"); return NGX_ERROR; }