Squid Web Cache master
Loading...
Searching...
No Matches
stub_ACLFilledChecklist.cc
Go to the documentation of this file.
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 "acl/FilledChecklist.cc"
12#include "tests/STUB.h"
13
14#include "ExternalACLEntry.h"
15
16#include "acl/FilledChecklist.h"
17// These stubs are not in tests/stub_acl.cc because ACLFilledChecklist requires
18// X509_free() and other heavy or difficult-to-stub dependencies that other
19// tests/stub_acl.cc users (e.g., testConfigParser) may not otherwise need.
23void ACLFilledChecklist::syncAle(HttpRequest *, const char *) const STUB
24void ACLFilledChecklist::updateAle(const AccessLogEntry::Pointer &) STUB
25void ACLFilledChecklist::updateReply(const HttpReply::Pointer &) STUB
26void ACLFilledChecklist::verifyAle() const STUB
#define STUB
macro to stub a void function.
Definition STUB.h:34