commit | e0db1e89462aeaaddd9f947b3fb4f0a8b3f50e9c | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Fri Jan 04 16:31:47 2013 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Wed Apr 03 02:12:56 2013 +0200 |
tree | f12ae8dacffcbb81c88f09eb308e7a5418ed787c | |
parent | aae75e3279c6c9bd136413a72dafdcd4986bb89a [diff] |
MEDIUM: acl: remove flag ACL_MAY_LOOKUP which is improperly used This flag is used on ACL matches that support being looking up patterns in trees. At the moment, only strings and IPs support tree-based lookups, but the flag is randomly set also on integers and binary data, and is not even always set on strings nor IPs. Better get rid of this mess by only relying on the matching function to decide whether or not it supports tree-based lookups, this is safer and easier to maintain.