]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/HasComponent.cc
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / acl / HasComponent.cc
CommitLineData
5ec4cffe 1/*
f70aedc4 2 * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
5ec4cffe
EB
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#include "acl/HasComponent.h"
11#include "acl/HasComponentData.h"
12
13int
4eac3407 14ACLHasComponentStrategy::match(ACLData<MatchType> * &data, ACLFilledChecklist *checklist)
5ec4cffe
EB
15{
16 ACLHasComponentData *cdata = dynamic_cast<ACLHasComponentData*>(data);
17 assert(cdata);
18 return cdata->match(checklist);
19}
aa28452d 20