]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/Strategised.cc
Source Format Enforcement (#1234)
[thirdparty/squid.git] / src / acl / Strategised.cc
CommitLineData
5dee515e 1/*
b8ae064d 2 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
5dee515e 3 *
bbc27441
AJ
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.
5dee515e 7 */
8
bbc27441
AJ
9/* DEBUG: section 28 Access Control */
10
582c2af2 11#include "squid.h"
c0941a6a 12#include "acl/Strategised.h"
d783a40c 13#include "HttpHeader.h"
5dee515e 14
26ac0430 15/*
6db78a1a
AJ
16 * moved template instantiation into ACLStrategized.cc
17 * to compile on Mac OSX 10.5 Leopard.
18 * This corrects a duplicate symbol error
715e93ad 19 */
26ac0430 20
715e93ad 21/* explicit template instantiation required for some systems */
22
c0941a6a 23/* XXX: move to ACLHTTPRepHeader or ACLHTTPReqHeader */
3d0ac046 24template class ACLStrategised<HttpHeader*>;
6db78a1a 25
dae6fcdb 26/* ACLMyPortName + ACLMyPeerName + ACLBrowser */
6db78a1a 27template class ACLStrategised<const char *>;
34388945 28
1e40905d 29/* ACLLocalPort + ACLSslError */
34388945 30template class ACLStrategised<int>;
f53969cc 31