]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ssl/ProxyCerts.h
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / ssl / ProxyCerts.h
1 /*
2 * Copyright (C) 1996-2020 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
9 #ifndef SQUID_SSLPROXYCERTS_H_
10 #define SQUID_SSLPROXYCERTS_H_
11
12 #if USE_OPENSSL
13 #include "acl/forward.h"
14
15 class sslproxy_cert_sign
16 {
17 public:
18 int alg;
19 ACLList *aclList;
20 sslproxy_cert_sign *next;
21 };
22
23 class sslproxy_cert_adapt
24 {
25 public:
26 int alg;
27 char *param;
28 ACLList *aclList;
29 sslproxy_cert_adapt *next;
30 };
31 #endif
32
33 #endif /* SQUID_SSLPROXYCERTS_H_ */
34