commit | b28925675d257db1ac8ec9a3b3d819575554345c | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Thu Sep 21 11:33:54 2017 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Sun Oct 22 09:54:14 2017 +0200 |
tree | 60bddbb8342cfb00fb45206f755a32880ce093c3 | |
parent | e56cdd362983009863a417d599145593249b5acf [diff] |
MEDIUM: http: make the chunk crlf parser only depend on the buffer The chunk crlf parser used to depend on the channel and on the HTTP message, eventhough it's not really needed. Let's remove this dependency so that it can be used within the H2 to H1 gateway. As part of this small API change, it was renamed to h1_skip_chunk_crlf() to mention that it doesn't depend on http_msg anymore.