]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ident/AclIdent.h
cf791e464d7e3b49ceb42c165a8c9b790da68466
[thirdparty/squid.git] / src / ident / AclIdent.h
1 /*
2 * Copyright (C) 1996-2016 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 #ifndef SQUID_IDENT_ACLIDENT_H
10 #define SQUID_IDENT_ACLIDENT_H
11
12 #if USE_IDENT
13
14 #include "acl/Checklist.h"
15
16 /// \ingroup ACLAPI
17 class IdentLookup : public ACLChecklist::AsyncState
18 {
19
20 public:
21 static IdentLookup *Instance();
22 virtual void checkForAsync(ACLChecklist *)const;
23
24 private:
25 static IdentLookup instance_;
26 static void LookupDone(const char *ident, void *data);
27 };
28
29 #include "acl/Acl.h"
30 #include "acl/Data.h"
31
32 /// \ingroup ACLAPI
33 class ACLIdent : public ACL
34 {
35 MEMPROXY_CLASS(ACLIdent);
36
37 public:
38 ACLIdent(ACLData<char const *> *newData, char const *);
39 ACLIdent (ACLIdent const &old);
40 ACLIdent & operator= (ACLIdent const &rhs);
41 ~ACLIdent();
42
43 virtual char const *typeString() const;
44 virtual void parse();
45 virtual bool isProxyAuth() const {return true;}
46
47 virtual int match(ACLChecklist *checklist);
48 virtual SBufList dump() const;
49 virtual bool empty () const;
50 virtual ACL *clone()const;
51
52 private:
53 static Prototype UserRegistryProtoype;
54 static ACLIdent UserRegistryEntry_;
55 static Prototype RegexRegistryProtoype;
56 static ACLIdent RegexRegistryEntry_;
57 ACLData<char const *> *data;
58 char const *type_;
59 };
60
61 #endif /* USE_IDENT */
62 #endif /* SQUID_IDENT_ACLIDENT_H */
63