commit | 443ea1a242f0d7c154d613d498ddf9682777d5a9 | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@qualys.com> | Thu Feb 04 13:40:26 2016 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Tue Feb 09 14:53:15 2016 +0100 |
tree | b915630a0d555388456021e840d9543070fc16af | |
parent | e6c3b69be01dd03c6d28ee1213ce88b232109cbd [diff] |
MINOR: filters: Extract proxy stuff from the struct filter Now, filter's configuration (.id, .conf and .ops fields) is stored in the structure 'flt_conf'. So proxies own a flt_conf list instead of a filter list. When a filter is attached to a stream, it gets a pointer on its configuration. This avoids mixing the filter's context (owns by a stream) and its configuration (owns by a proxy). It also saves 2 pointers per filter instance.