]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/AtStepData.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / acl / AtStepData.h
CommitLineData
bbc27441 1/*
bde978a6 2 * Copyright (C) 1996-2015 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
5d65362c
CT
9#ifndef SQUID_ACLATSTEPDATA_H
10#define SQUID_ACLATSTEPDATA_H
8693472e
CT
11
12#if USE_OPENSSL
13
5d65362c
CT
14#include "acl/Acl.h"
15#include "acl/Data.h"
5d65362c 16#include "ssl/support.h"
8693472e 17
5d65362c
CT
18#include <list>
19
20class ACLAtStepData : public ACLData<Ssl::BumpStep>
21{
5d65362c
CT
22 MEMPROXY_CLASS(ACLAtStepData);
23
741c2986 24public:
5d65362c
CT
25 ACLAtStepData();
26 ACLAtStepData(ACLAtStepData const &);
27 ACLAtStepData &operator= (ACLAtStepData const &);
28 virtual ~ACLAtStepData();
29 bool match(Ssl::BumpStep);
30 virtual SBufList dump() const;
31 void parse();
32 bool empty() const;
cd44274b 33 virtual ACLAtStepData *clone() const;
5d65362c
CT
34
35 std::list<Ssl::BumpStep> values;
36};
37
8693472e
CT
38#endif /* USE_OPENSSL */
39
5d65362c 40#endif /* SQUID_ACLSSL_ERRORDATA_H */
f53969cc 41