]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
fixup: Found a slightly more logical location for method declaration
authorAlex Rousskov <rousskov@measurement-factory.com>
Wed, 14 Jul 2021 22:38:19 +0000 (18:38 -0400)
committerAlex Rousskov <rousskov@measurement-factory.com>
Fri, 16 Jul 2021 17:33:09 +0000 (13:33 -0400)
... in this old code that separates all data members from all methods.

src/adaptation/icap/Xaction.h

index 9fdb6fd8bbdc6e79788e8a6f6f200f0096f71f13..9956d9ac1ee76458d8dfd66b4b0962a9a43937b8 100644 (file)
@@ -129,6 +129,7 @@ public:
     ServiceRep &service();
 
 private:
+    void successfullyConnected();
     void tellQueryAborted();
     void maybeLog();
 
@@ -157,8 +158,6 @@ protected:
     timeval icap_tio_finish;   /*time when the last byte of the ICAP responsewas received*/
 
 private:
-    void successfullyConnected();
-
     /// establishes a transport connection to the ICAP server
     JobWait<Comm::ConnOpener> connWait;