]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/adaptation/ServiceFilter.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / adaptation / ServiceFilter.cc
index 8a7b02dfbf8d68d85f033c1c7e370e9d092bd8d0..c853b4985790d37c0c0890af41450f0006c04446 100644 (file)
 #include "HttpRequest.h"
 
 Adaptation::ServiceFilter::ServiceFilter(Method aMethod, VectPoint aPoint, HttpRequest *aReq, HttpReply *aRep, AccessLogEntry::Pointer const &alp):
-        method(aMethod),
-        point(aPoint),
-        request(aReq),
-        reply(aRep),
-        al(alp)
+    method(aMethod),
+    point(aPoint),
+    request(aReq),
+    reply(aRep),
+    al(alp)
 {
     if (reply)
         HTTPMSGLOCK(reply);
@@ -28,11 +28,11 @@ Adaptation::ServiceFilter::ServiceFilter(Method aMethod, VectPoint aPoint, HttpR
 }
 
 Adaptation::ServiceFilter::ServiceFilter(const ServiceFilter &f):
-        method(f.method),
-        point(f.point),
-        request(f.request),
-        reply(f.reply),
-        al(f.al)
+    method(f.method),
+    point(f.point),
+    request(f.request),
+    reply(f.reply),
+    al(f.al)
 {
     if (request)
         HTTPMSGLOCK(request);
@@ -62,3 +62,4 @@ Adaptation::ServiceFilter &Adaptation::ServiceFilter::operator =(const ServiceFi
     }
     return *this;
 }
+