commit | cb7dd015be4603af3564466d394ac4335aa8102b | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Fri Apr 03 22:16:32 2015 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Mon Apr 06 11:35:52 2015 +0200 |
tree | 8b218e28b98b5fadfbdc39577025d60b82deb22e | |
parent | 53c9b4db41337d5894c5791ce9905fe665faa09f [diff] |
MEDIUM: http: move header captures from http_txn to struct stream The header captures are now general purpose captures since tcp rules can use them to capture various contents. That removes a dependency on http_txn that appeared in some sample fetch functions and in the order by which captures and http_txn were allocated. Interestingly the reset of the header captures were done at too many places as http_init_txn() used to do it while it was done previously in every call place.