]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/ACLMaxUserIP.h
Cleanup: zap CVS Id tags
[thirdparty/squid.git] / src / ACLMaxUserIP.h
index 3a4b8d6db2203c4aabf5a0fcdf66c479082d563b..903e2031ada225d8c08fae0ca1eadafd8bcf708c 100644 (file)
@@ -1,6 +1,5 @@
-
 /*
- * $Id: ACLMaxUserIP.h,v 1.9 2007/05/09 07:36:24 wessels Exp $
+ * $Id$
  *
  *
  * SQUID Web Proxy Cache          http://www.squid-cache.org/
  *  it under the terms of the GNU General Public License as published by
  *  the Free Software Foundation; either version 2 of the License, or
  *  (at your option) any later version.
- *  
+ *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
- *  
+ *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
 
 #ifndef SQUID_ACLMAXUSERIP_H
 #define SQUID_ACLMAXUSERIP_H
+
 #include "ACL.h"
 #include "ACLChecklist.h"
 
+/// \ingroup ACLAPI
 class ACLMaxUserIP : public ACL
 {
 
@@ -66,21 +67,17 @@ private:
     static Prototype RegistryProtoype;
     static ACLMaxUserIP RegistryEntry_;
 
-    int match(AuthUserRequest *, struct IN_ADDR const &);
+    int match(AuthUserRequest *, IpAddress const &);
     char const *class_;
     int maximum;
 
-    struct Flags
-    {
-        Flags() : strict(0){}
-
-unsigned int strict:
-        1;
-    }
+    struct Flags {
+        Flags() : strict(0) {}
 
-    flags;
+        unsigned int strict:1;
+    } flags;
 };
 
-MEMPROXY_CLASS_INLINE(ACLMaxUserIP)
+MEMPROXY_CLASS_INLINE(ACLMaxUserIP)          /**DOCS_NOSEMI*/
 
 #endif /* SQUID_ACLMAXUSERIP_H */