]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Add debugging of negative Interception result data.
authorroot <root@rio.treenetnz.com>
Wed, 21 May 2008 02:47:16 +0000 (14:47 +1200)
committerroot <root@rio.treenetnz.com>
Wed, 21 May 2008 02:47:16 +0000 (14:47 +1200)
src/IPInterception.cc

index b1a4e8d7909aef9b11843c99fabf89f1f3ac0f19..74a89e8fc37abfc62a1eb3bc966a22e25dd2258a 100644 (file)
@@ -148,6 +148,7 @@ IPIntercept::NetfilterInterception(int fd, const IPAddress &me, IPAddress &dst,
         return 0;
     }
 
+    debugs(89, 9, HERE << "address: me= " << me << ", dst= " << dst);
 #endif
     return -1;
 }
@@ -181,6 +182,7 @@ IPIntercept::NetfilterTransparent(int fd, const IPAddress &me, IPAddress &dst, i
         return 0;
     }
 
+    debugs(89, 9, HERE << "address: me= " << me << ", dst= " << dst);
 #endif
     return -1;
 }
@@ -212,6 +214,7 @@ IPIntercept::IPFWInterception(int fd, const IPAddress &me, IPAddress &dst, int s
         return 0;
     }
 
+    debugs(89, 9, HERE << "address: me= " << me << ", dst= " << dst);
 #endif
     return -1;
 }