commit | 60ef12c80bf66bcca781b847f49141586eef8474 | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Thu Sep 24 10:05:44 2020 +0200 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Fri Dec 04 14:41:48 2020 +0100 |
tree | 5a09e77d85e6b0f564fc7005f7519eabdb16e2b5 | |
parent | 0a799aa3d6d123f6055965bfcaa5fc2361cdeef0 [diff] |
MINOR: mux-h1: Separate parsing and formatting errors at H1 stream level Instead of using H1S flags to report an error on the request or the response, independently it is a parsing or a formatting error, we now use a flag to report parsing errors and another one to report formatting ones. This simplify the message parsing. It is also easier to figure out what error happened when one of this flag is set. The side may be deduced checking the H1C_F_IS_BACK flag.