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