commit | 628c40cd961dc096549edc41ddd52f6d4b816c2a | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Thu Apr 24 19:11:26 2014 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Thu Apr 24 20:21:56 2014 +0200 |
tree | 32dfc0a87a812f5257f02f4872f6715cc8915f16 | |
parent | 4d1f128a1807c97d08390e09cf0c84c0cb28af80 [diff] |
MEDIUM: http: move skipping of 100-continue earlier It's useless to process 100-continue in the middle of response filters because there's no info in the 100 response itself, and it could even make things worse. So better use it as it is, an interim response waiting for the next response, thus we just have to put it into http_wait_for_response(). That way we ensure to have a valid response in this function.