]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MINOR: h1-htx: Move HTTP chunks parsing into a dedicated function
authorChristopher Faulet <cfaulet@haproxy.com>
Wed, 3 Feb 2021 10:51:24 +0000 (11:51 +0100)
committerChristopher Faulet <cfaulet@haproxy.com>
Tue, 25 May 2021 08:41:50 +0000 (10:41 +0200)
commit140691baf983535a8cc70cfebbf3732c77e5177c
tree491fe42682044b96f40dd50d489898188942a12e
parent16a524c9ea7c761aa4b00fdeb3129c76ff0954ef
MINOR: h1-htx: Move HTTP chunks parsing into a dedicated function

Chunked data are now parsed in a dedicated function. This way, it will be
possible to have two functions to parse chunked messages. The current one
for messages with large chunks and an other one to parse messages with small
chunks.

The parsing of small chunks is really sensitive because it may be used as a
DoS attack. So we must be carefull to have an optimized function to parse
such messages.
src/h1_htx.c