]>
| Commit | Line | Data |
|---|---|---|
| 4e0938ef | 1 | /* |
| 1f7b830e | 2 | * Copyright (C) 1996-2025 The Squid Software Foundation and contributors |
| 4e0938ef AJ |
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 | ||
| f02539d9 FC |
9 | #include "squid.h" |
| 10 | ||
| 11 | #define STUB_API "external_acl.cc" | |
| 12 | #include "tests/STUB.h" | |
| 13 | ||
| 14 | #include "ExternalACL.h" | |
| 15 | #include "ExternalACLEntry.h" | |
| 16 | ||
| 17 | void parse_externalAclHelper(external_acl ** ) STUB | |
| 18 | void dump_externalAclHelper(StoreEntry *, const char *, const external_acl *) STUB | |
| 19 | void free_externalAclHelper(external_acl **) STUB | |
| 20 | void ACLExternal::parse() STUB | |
| b5c1c44c FC |
21 | bool ACLExternal::valid () const STUB_RETVAL(false) |
| 22 | bool ACLExternal::empty () const STUB_RETVAL(false) | |
| 23 | int ACLExternal::match(ACLChecklist *) STUB_RETVAL(0) | |
| 4f8ca96e | 24 | SBufList ACLExternal::dump() const STUB_RETVAL(SBufList()) |
| f02539d9 FC |
25 | void externalAclInit(void) STUB_NOP |
| 26 | void externalAclShutdown(void) STUB_NOP | |
| f53969cc | 27 |