]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MEDIUM: htx: Add the parsing of trailers of chunked messages
authorChristopher Faulet <cfaulet@haproxy.com>
Mon, 3 Jun 2019 08:41:26 +0000 (10:41 +0200)
committerChristopher Faulet <cfaulet@haproxy.com>
Wed, 5 Jun 2019 08:12:11 +0000 (10:12 +0200)
commit2d7c5395ed6edaefe2b59c468b1652a2046e5ea3
tree8ed1b1073ebe89e45959e3d1a744ebaab261afb0
parent8f3c256f7ec971fc6fdfaba51a4186c73f1d0bab
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.
include/common/htx.h
src/cache.c
src/flt_http_comp.c
src/flt_trace.c
src/h2.c
src/htx.c
src/mux_h1.c
src/mux_h2.c