commit | 2be362c93783a60116f4bec15a035182f32e8bb5 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue Oct 08 11:59:37 2019 +0200 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Wed Oct 09 11:05:31 2019 +0200 |
tree | bc0e25a1c080d9eb8d7f884ee169dbbe9977a4eb | |
parent | 35efbe2cda5071b8c52265461eb858454c4786c5 [diff] |
MINOR: h2: clarify the rules for how to convert an H2 request to HTX The H2 request parsing is not trivial given that we have multiple possible syntaxes. Mainly we can have :authority or not, and when a CONNECT method is seen, :scheme and :path are missing. This mostly updates the functions' comments and header index assignments to make them less confusing. Functionally there is no change.