]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ssl/Config.cc
merge from parent
[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 }
13
14 Ssl::Config::~Config()
15 {
16 #if USE_SSL_CRTD
17 xfree(ssl_crtd);
18 #endif
19 xfree(ssl_crt_validator);
20 }