diff --git a/proxy/http/remap/AclFiltering.h b/proxy/http/remap/AclFiltering.h index 345ede33c2f..6e2c61409a1 100644 --- a/proxy/http/remap/AclFiltering.h +++ b/proxy/http/remap/AclFiltering.h @@ -73,8 +73,8 @@ class acl_filter_rule unsigned int allow_flag : 1, // action allow deny src_ip_valid : 1, // src_ip range valid in_ip_valid : 1, - active_queue_flag : 1, // filter is in active state (used by .useflt directive) - internal : 1; // filter internal HTTP requests + active_queue_flag : 1, // filter is in active state (used by .useflt directive) + internal : 1; // filter internal HTTP requests // we need arguments as string array for directive processing int argc; // argument counter (only for filter defs) diff --git a/proxy/http/remap/RemapConfig.h b/proxy/http/remap/RemapConfig.h index 6c810d5e292..300eaea15d0 100644 --- a/proxy/http/remap/RemapConfig.h +++ b/proxy/http/remap/RemapConfig.h @@ -38,7 +38,7 @@ class UrlRewrite; #define REMAP_OPTFLG_SRC_IP 0x0010u /* "src_ip=" option (used for ACL filtering) */ #define REMAP_OPTFLG_ACTION 0x0020u /* "action=" option (used for ACL filtering) */ #define REMAP_OPTFLG_INTERNAL 0x0040u /* only allow internal requests to hit this remap */ -#define REMAP_OPTFLG_IN_IP 0x0080u /* "in_ip=" option (used for ACL filtering)*/ +#define REMAP_OPTFLG_IN_IP 0x0080u /* "in_ip=" option (used for ACL filtering)*/ #define REMAP_OPTFLG_MAP_ID 0x0800u /* associate a map ID with this rule */ #define REMAP_OPTFLG_INVERT 0x80000000u /* "invert" the rule (for src_ip at least) */ #define REMAP_OPTFLG_ALL_FILTERS (REMAP_OPTFLG_METHOD | REMAP_OPTFLG_SRC_IP | REMAP_OPTFLG_ACTION | REMAP_OPTFLG_INTERNAL)