1 /*
2  * Copyright (C) 1996-2021 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 #include "squid.h"
10 
11 #define STUB_API "auth/libacls.la"
12 #include "STUB.h"
13 
14 #if USE_AUTH
15 #include "acl/Acl.h" /* for allow_t */
16 
17 #include "auth/Acl.h"
18 allow_t AuthenticateAcl(ACLChecklist *) STUB_RETVAL(ACCESS_DENIED)
19 
20 #include "auth/AclMaxUserIp.h"
21 ACL * ACLMaxUserIP::clone() const STUB_RETVAL(NULL)
22 ACLMaxUserIP::ACLMaxUserIP (char const *) STUB
23 char const * ACLMaxUserIP::typeString() const STUB_RETVAL(NULL)
24 bool ACLMaxUserIP::empty () const STUB_RETVAL(false)
25 bool ACLMaxUserIP::valid () const STUB_RETVAL(false)
26 void ACLMaxUserIP::parse() STUB
27 int ACLMaxUserIP::match(Auth::UserRequest::Pointer, Ip::Address const &) STUB_RETVAL(0)
28 int ACLMaxUserIP::match(ACLChecklist *) STUB_RETVAL(0)
29 SBufList ACLMaxUserIP::dump() const STUB_RETVAL(SBufList())
30 const Acl::Options &ACLMaxUserIP::options() STUB_RETVAL(Acl::NoOptions())
31 
32 #include "auth/AclProxyAuth.h"
33 ACLProxyAuth::~ACLProxyAuth() STUB
34 ACLProxyAuth::ACLProxyAuth(ACLData<char const *> *, char const *) STUB
35 ACLProxyAuth::ACLProxyAuth (ACLProxyAuth const &) STUB
36 ACLProxyAuth & ACLProxyAuth::operator= (ACLProxyAuth const & a) STUB_RETVAL(const_cast<ACLProxyAuth &>(a))
37 char const * ACLProxyAuth::typeString() const STUB_RETVAL(NULL)
38 void ACLProxyAuth::parse() STUB
39 int ACLProxyAuth::match(ACLChecklist *) STUB_RETVAL(0)
40 SBufList ACLProxyAuth::dump() const STUB_RETVAL(SBufList())
41 bool ACLProxyAuth::empty () const STUB_RETVAL(false)
42 bool ACLProxyAuth::valid () const STUB_RETVAL(false)
43 ProxyAuthLookup * ProxyAuthLookup::Instance() STUB_RETVAL(NULL)
44 void ProxyAuthLookup::checkForAsync(ACLChecklist *) const STUB
45 void ProxyAuthLookup::LookupDone(void *) STUB
46 ACL * ACLProxyAuth::clone() const STUB_RETVAL(NULL)
47 int ACLProxyAuth::matchForCache(ACLChecklist *) STUB_RETVAL(0)
48 int ACLProxyAuth::matchProxyAuth(ACLChecklist *) STUB_RETVAL(0)
49 void ACLProxyAuth::parseFlags() STUB
50 
51 #endif /* USE_AUTH */
52 
53