]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ssl/Config.cc
Renamed squid.h to squid-old.h and config.h to squid.h
[thirdparty/squid.git] / src / ssl / Config.cc
1 /*
2 * $Id$
3 */
4 #include "squid.h"
5 #include "ssl/Config.h"
6
7 Ssl::Config Ssl::TheConfig;
8
9 Ssl::Config::Config()
10 #if USE_SSL_CRTD
11 :
12 ssl_crtd(NULL)
13 #endif
14 {
15 }
16
17 Ssl::Config::~Config()
18 {
19 #if USE_SSL_CRTD
20 xfree(ssl_crtd);
21 #endif
22 }