]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ssl/Config.cc
merge from trunk
[thirdparty/squid.git] / src / ssl / Config.cc
1 #include "squid.h"
2 #include "ssl/Config.h"
3
4 Ssl::Config Ssl::TheConfig;
5
6 Ssl::Config::Config():
7 #if USE_SSL_CRTD
8 ssl_crtd(NULL),
9 #endif
10 ssl_crt_validator(NULL)
11 {
12 ssl_crt_validator_Children.concurrency = 1;
13 }
14
15 Ssl::Config::~Config()
16 {
17 #if USE_SSL_CRTD
18 xfree(ssl_crtd);
19 #endif
20 xfree(ssl_crt_validator);
21 }