]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Mon, 31 Dec 2012 01:13:06 +0000 (18:13 -0700)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Mon, 31 Dec 2012 01:13:06 +0000 (18:13 -0700)
src/htcp.cc
src/icp_v2.cc
src/ip/QosConfig.cc

index 84776a6961bfce7a722703d6950b2ffdb37821f4..ec38011202b707afe6840620ee8aacce6a928531 100644 (file)
@@ -1089,7 +1089,7 @@ htcpHandleTst(htcpDataHeader * hdr, char *buf, int sz, Ip::Address &from)
 }
 
 HtcpReplyData::HtcpReplyData() :
-                hit(0), hdr(hoHtcpReply), msg_id(0), version(0.0)
+        hit(0), hdr(hoHtcpReply), msg_id(0), version(0.0)
 {}
 
 static void
index a5d199343031ad6f5d30019a46bba2eb722b7c1b..ec66377695eaac8af4e47dbbac32a87a11270ee3 100644 (file)
@@ -96,12 +96,12 @@ Comm::ConnectionPointer icpOutgoingConn = NULL;
 
 /* icp_common_t */
 _icp_common_t::_icp_common_t() :
-                opcode(ICP_INVALID), version(0), length(0), reqnum(0),
-                flags(0), pad(0), shostid(0)
+        opcode(ICP_INVALID), version(0), length(0), reqnum(0),
+        flags(0), pad(0), shostid(0)
 {}
 
 _icp_common_t::_icp_common_t(char *buf, unsigned int len) :
-                opcode(ICP_INVALID), version(0), reqnum(0), flags(0), pad(0), shostid(0)
+        opcode(ICP_INVALID), version(0), reqnum(0), flags(0), pad(0), shostid(0)
 {
     if (len < sizeof(_icp_common_t)) {
         /* mark as invalid */
index 0f350937fb1f1b9aa9191dc827c4a309ab8dd6ef..8fd23c8af6fdce909fa59f84aef3e85685fb9d59 100644 (file)
@@ -185,12 +185,12 @@ Ip::Qos::doNfmarkLocalHit(const Comm::ConnectionPointer &conn)
 Ip::Qos::Config Ip::Qos::TheConfig;
 
 Ip::Qos::Config::Config() : tosLocalHit(0), tosSiblingHit(0), tosParentHit(0),
-                tosMiss(0), tosMissMask(0), preserveMissTos(false),
-                preserveMissTosMask(0xFF), markLocalHit(0), markSiblingHit(0),
-                markParentHit(0), markMiss(0), markMissMask(0),
-                preserveMissMark(false), preserveMissMarkMask(0xFFFFFFFF),
-                tosToServer(NULL), tosToClient(NULL), nfmarkToServer(NULL),
-                nfmarkToClient(NULL)
+        tosMiss(0), tosMissMask(0), preserveMissTos(false),
+        preserveMissTosMask(0xFF), markLocalHit(0), markSiblingHit(0),
+        markParentHit(0), markMiss(0), markMissMask(0),
+        preserveMissMark(false), preserveMissMarkMask(0xFFFFFFFF),
+        tosToServer(NULL), tosToClient(NULL), nfmarkToServer(NULL),
+        nfmarkToClient(NULL)
 {
 }