commit | 1b4cf9b7545792aedbf9cf00b8948e6cf28824ed | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Thu Nov 09 11:15:45 2017 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Thu Nov 09 11:15:45 2017 +0100 |
tree | 0517db5160b325b89a06c1eb32284b710953007b | |
parent | ddfbd83780de0f140fc7195d1a16953ec18ef37a [diff] |
BUG/MINOR: h1: the HTTP/1 make status code parser check for digits The H1 parser used by the H2 gateway was a bit lax and could validate non-numbers in the status code. Since it computes the code on the fly it's problematic, as "30:" is read as status code 310. Let's properly check that it's a number now. No backport needed.