]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Bug #779: With 2.5 rel there is no more the DUPLICATE IP logging in cache.log
authorhno <>
Sat, 11 Mar 2006 05:40:24 +0000 (05:40 +0000)
committerhno <>
Sat, 11 Mar 2006 05:40:24 +0000 (05:40 +0000)
src/ACLMaxUserIP.cc

index de60c9016365fe82f8bccba2f5f246b40c0d4bc0..d081e86500b02b06bd8a79de20afb5eff6f92412 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: ACLMaxUserIP.cc,v 1.8 2005/05/06 01:57:55 hno Exp $
+ * $Id: ACLMaxUserIP.cc,v 1.9 2006/03/10 22:40:24 hno Exp $
  *
  * DEBUG: section 28    Access Control
  * AUTHOR: Duane Wessels
@@ -126,6 +126,8 @@ ACLMaxUserIP::match(auth_user_request_t * auth_user_request,
     if (authenticateAuthUserRequestIPCount(auth_user_request) <= maximum)
         return 0;
 
+    debug(28, 1) ("aclMatchUserMaxIP: user '%s' tries to use too many IP addresses (max %d allowed)!\n", auth_user_request->username(), maximum);
+
     /* this is a match */
     if (flags.strict)
     {