You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2015/05/07 01:23:56 UTC

trafficserver git commit: TS-3582 clang-format

Repository: trafficserver
Updated Branches:
  refs/heads/master a65980b65 -> d4d55cda7


TS-3582 clang-format


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/d4d55cda
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/d4d55cda
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/d4d55cda

Branch: refs/heads/master
Commit: d4d55cda74e023868159996f782f70f17ef96441
Parents: a65980b
Author: Leif Hedstrom <zw...@apache.org>
Authored: Wed May 6 17:20:42 2015 -0600
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Wed May 6 17:20:46 2015 -0600

----------------------------------------------------------------------
 proxy/http/remap/AclFiltering.h | 4 ++--
 proxy/http/remap/RemapConfig.h  | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/d4d55cda/proxy/http/remap/AclFiltering.h
----------------------------------------------------------------------
diff --git a/proxy/http/remap/AclFiltering.h b/proxy/http/remap/AclFiltering.h
index 345ede3..6e2c614 100644
--- a/proxy/http/remap/AclFiltering.h
+++ b/proxy/http/remap/AclFiltering.h
@@ -73,8 +73,8 @@ public:
   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)

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/d4d55cda/proxy/http/remap/RemapConfig.h
----------------------------------------------------------------------
diff --git a/proxy/http/remap/RemapConfig.h b/proxy/http/remap/RemapConfig.h
index 6c810d5..300eaea 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)