]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/AtStepData.h
Bug 4102: sslbump cert contains only a dot character in key usage extension
[thirdparty/squid.git] / src / acl / AtStepData.h
CommitLineData
bbc27441
AJ
1/*
2 * Copyright (C) 1996-2014 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
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"
16#include "CbDataList.h"
17#include "ssl/support.h"
8693472e 18
5d65362c
CT
19#include <list>
20
21class ACLAtStepData : public ACLData<Ssl::BumpStep>
22{
23
24public:
25 MEMPROXY_CLASS(ACLAtStepData);
26
27 ACLAtStepData();
28 ACLAtStepData(ACLAtStepData const &);
29 ACLAtStepData &operator= (ACLAtStepData const &);
30 virtual ~ACLAtStepData();
31 bool match(Ssl::BumpStep);
32 virtual SBufList dump() const;
33 void parse();
34 bool empty() const;
35 virtual ACLAtStepData *clone() const;
36
37 std::list<Ssl::BumpStep> values;
38};
39
40MEMPROXY_CLASS_INLINE(ACLAtStepData);
41
8693472e
CT
42#endif /* USE_OPENSSL */
43
5d65362c 44#endif /* SQUID_ACLSSL_ERRORDATA_H */