]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ssl/Config.h
Merge from trunk. and Save Comm::Connection in IoCallback
[thirdparty/squid.git] / src / ssl / Config.h
1 /*
2 * $Id$
3 */
4
5 #ifndef SQUID_SSL_CONFIG_H
6 #define SQUID_SSL_CONFIG_H
7
8 #include "HelperChildConfig.h"
9
10 namespace Ssl
11 {
12
13 class Config
14 {
15 public:
16 #if USE_SSL_CRTD
17 char *ssl_crtd; ///< Name of external ssl_crtd application.
18 /// The number of processes spawn for ssl_crtd.
19 HelperChildConfig ssl_crtdChildren;
20 #endif
21 Config();
22 ~Config();
23 private:
24 Config(const Config &); // not implemented
25 Config &operator =(const Config &); // not implemented
26 };
27
28 extern Config TheConfig;
29
30 } // namespace Ssl
31 #endif