commit | 2d7c5395ed6edaefe2b59c468b1652a2046e5ea3 | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Mon Jun 03 10:41:26 2019 +0200 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Wed Jun 05 10:12:11 2019 +0200 |
tree | 8ed1b1073ebe89e45959e3d1a744ebaab261afb0 | |
parent | 8f3c256f7ec971fc6fdfaba51a4186c73f1d0bab [diff] |
MEDIUM: htx: Add the parsing of trailers of chunked messages HTTP trailers are now parsed in the same way headers are. It means trailers are converted to K/V blocks followed by an end-of-trailer marker. For now, to make things simple, the type for trailer blocks are not the same than for header blocks. But the aim is to make no difference between headers and trailers by using the same type. Probably for the end-of marker too.