]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ident/AclIdent.h
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / ident / AclIdent.h
1 /*
2 * Copyright (C) 1996-2020 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 /* ACL API */
44 virtual char const *typeString() const;
45 virtual void parse();
46 virtual bool isProxyAuth() const {return true;}
47 virtual void parseFlags();
48 virtual int match(ACLChecklist *checklist);
49 virtual SBufList dump() const;
50 virtual bool empty () const;
51 virtual ACL *clone()const;
52
53 private:
54 ACLData<char const *> *data;
55 char const *type_;
56 };
57
58 #endif /* USE_IDENT */
59 #endif /* SQUID_IDENT_ACLIDENT_H */
60