]> git.ipfire.org Git - thirdparty/squid.git/blame - src/ssl/Config.h
Boilerplate: update copyright blurbs on Squid helpers
[thirdparty/squid.git] / src / ssl / Config.h
CommitLineData
95d2589c
CT
1#ifndef SQUID_SSL_CONFIG_H
2#define SQUID_SSL_CONFIG_H
3
95d2589c
CT
4#include "HelperChildConfig.h"
5
6namespace Ssl
7{
8
9class Config
10{
11public:
12#if USE_SSL_CRTD
13 char *ssl_crtd; ///< Name of external ssl_crtd application.
14 /// The number of processes spawn for ssl_crtd.
15 HelperChildConfig ssl_crtdChildren;
4a77bb4e 16#endif
2cef0ca6
AR
17 char *ssl_crt_validator;
18 HelperChildConfig ssl_crt_validator_Children;
dffc462a 19 Config();
95d2589c
CT
20 ~Config();
21private:
22 Config(const Config &); // not implemented
23 Config &operator =(const Config &); // not implemented
24};
25
26extern Config TheConfig;
27
28} // namespace Ssl
29#endif