]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ssl/Config.cc
Removed leftover CVS-Id markers
[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 :
9 ssl_crtd(NULL)
10 #endif
11 {
12 }
13
14 Ssl::Config::~Config()
15 {
16 #if USE_SSL_CRTD
17 xfree(ssl_crtd);
18 #endif
19 }