]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MINOR: http: Don't store raw HTTP errors in chunks anymore
authorChristopher Faulet <cfaulet@haproxy.com>
Wed, 17 Jul 2019 20:02:08 +0000 (22:02 +0200)
committerChristopher Faulet <cfaulet@haproxy.com>
Fri, 19 Jul 2019 07:46:23 +0000 (09:46 +0200)
commitf734638976bde45e96a833a6da32adea2d3a1d15
treebdf19bc7b29ba941ed1f74042f4373f2755bba33
parent41ba36f8b2a26de366abe602220b667e90967ea0
MINOR: http: Don't store raw HTTP errors in chunks anymore

Default HTTP error messages are stored in an array of chunks. And since the HTX
was added, these messages are also converted in HTX and stored in another
array. But now, the first array is not used anymore because the legacy HTTP mode
was removed.

So now, only the array with the HTX messages are kept. The other one was
removed.
include/common/http.h
include/proto/http_htx.h
src/cache.c
src/cfgparse-listen.c
src/haproxy.c
src/hlua.c
src/http.c
src/http_ana.c
src/http_htx.c