]> git.ipfire.org Git - thirdparty/squid.git/blame_incremental - src/tests/stub_external_acl.cc
Use RegisteredRunners for WCCP (de)activation (#2104)
[thirdparty/squid.git] / src / tests / stub_external_acl.cc
... / ...
CommitLineData
1/*
2 * Copyright (C) 1996-2025 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 "external_acl.cc"
12#include "tests/STUB.h"
13
14#include "ExternalACL.h"
15#include "ExternalACLEntry.h"
16
17void parse_externalAclHelper(external_acl ** ) STUB
18void dump_externalAclHelper(StoreEntry *, const char *, const external_acl *) STUB
19void free_externalAclHelper(external_acl **) STUB
20void ACLExternal::parse() STUB
21bool ACLExternal::valid () const STUB_RETVAL(false)
22bool ACLExternal::empty () const STUB_RETVAL(false)
23int ACLExternal::match(ACLChecklist *) STUB_RETVAL(0)
24SBufList ACLExternal::dump() const STUB_RETVAL(SBufList())
25void externalAclInit(void) STUB_NOP
26void externalAclShutdown(void) STUB_NOP
27