commit | 140691baf983535a8cc70cfebbf3732c77e5177c | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Wed Feb 03 11:51:24 2021 +0100 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Tue May 25 10:41:50 2021 +0200 |
tree | 491fe42682044b96f40dd50d489898188942a12e | |
parent | 16a524c9ea7c761aa4b00fdeb3129c76ff0954ef [diff] |
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.