From: root Date: Wed, 21 May 2008 02:47:16 +0000 (+1200) Subject: Add debugging of negative Interception result data. X-Git-Tag: SQUID_3_1_0_1~49^2~231 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83707d8a34cd8edb282bfde3b49f9faa5fb32117;p=thirdparty%2Fsquid.git Add debugging of negative Interception result data. --- diff --git a/src/IPInterception.cc b/src/IPInterception.cc index b1a4e8d790..74a89e8fc3 100644 --- a/src/IPInterception.cc +++ b/src/IPInterception.cc @@ -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; }