TS-1407 Change the ip allow/quick filter ALL mask to allow all methods.
Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/eee9d214 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/eee9d214 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/eee9d214 Branch: refs/heads/3.2.x Commit: eee9d2140004e87280a4efe1228fd5148e78517c Parents: b7c78c4 Author: Bryan Call <[email protected]> Authored: Tue Aug 14 14:38:58 2012 -0700 Committer: Igor GaliÄ <[email protected]> Committed: Wed Sep 26 13:51:28 2012 +0200 ---------------------------------------------------------------------- proxy/IPAllow.cc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/eee9d214/proxy/IPAllow.cc ---------------------------------------------------------------------- diff --git a/proxy/IPAllow.cc b/proxy/IPAllow.cc index 984bebd..a593977 100644 --- a/proxy/IPAllow.cc +++ b/proxy/IPAllow.cc @@ -121,7 +121,7 @@ IpAllow::InitInstance() { // Should not have been initialized before ink_assert(_instance == NULL); - ALL_METHOD_MASK = ~(~0 << HTTP_WKSIDX_METHODS_CNT); + ALL_METHOD_MASK = ~0; ip_reconfig_mutex = new_ProxyMutex();
