]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/ServerCertificate.h
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / acl / ServerCertificate.h
CommitLineData
8578e64a 1/*
77b1029d 2 * Copyright (C) 1996-2020 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.
8578e64a
AR
7 */
8
9#ifndef SQUID_ACLSERVERCERTIFICATE_H
10#define SQUID_ACLSERVERCERTIFICATE_H
11
12#include "acl/Acl.h"
8578e64a 13#include "acl/Checklist.h"
602d9612 14#include "acl/Data.h"
8578e64a 15#include "acl/Strategised.h"
602d9612 16#include "ssl/support.h"
8578e64a
AR
17
18/// \ingroup ACLAPI
19class ACLServerCertificateStrategy : public ACLStrategy<X509 *>
20{
8578e64a 21public:
4eac3407 22 virtual int match (ACLData<MatchType> * &, ACLFilledChecklist *) override;
8578e64a
AR
23};
24
25#endif /* SQUID_ACLSERVERCERTIFICATE_H */
f53969cc 26