commit | 926fa4c098fff29d54c9bf0a5a2c9d9bb245c143 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue Nov 07 14:42:12 2017 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Tue Nov 07 14:47:04 2017 +0100 |
tree | 315c7dcb764c2e2567f458dece37701303b4f4f0 | |
parent | c4312d3dfd5129d8befa69208ff7132702fd5da7 [diff] |
BUG/MINOR: h2: don't send GOAWAY on failed response As part of the detection for intentional closes, we can kill the connection if a shutw() happens before the headers. But it can also happen that an invalid response is not properly parsed, preventing any headers frame from being sent and making the function believe it was an abort. Now instead we check if any response was received from the stream, regardless of the fact that it was properly converted.