]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/AtStep.h
CI: Upgrade GitHub Setup Node and CodeQL actions to Node 20 (#1845)
[thirdparty/squid.git] / src / acl / AtStep.h
CommitLineData
bbc27441 1/*
b8ae064d 2 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
bbc27441
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
ff9d9458
FC
9#ifndef SQUID_SRC_ACL_ATSTEP_H
10#define SQUID_SRC_ACL_ATSTEP_H
8693472e 11
8319d478
AR
12#include "acl/Data.h"
13#include "acl/ParameterizedNode.h"
090f1d3c 14#include "XactionStep.h"
5d65362c 15
8319d478 16namespace Acl
5d65362c
CT
17{
18
8319d478
AR
19/// an "at_step" ACL
20class AtStepCheck: public ParameterizedNode< ACLData<XactionStep> >
21{
5d65362c 22public:
922513e5 23 /* Acl::Node API */
8319d478 24 int match(ACLChecklist *) override;
5d65362c
CT
25};
26
8319d478
AR
27} // namespace Acl
28
ff9d9458 29#endif /* SQUID_SRC_ACL_ATSTEP_H */
f53969cc 30