]> git.ipfire.org Git - thirdparty/squid.git/blame - src/ssl/Config.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / ssl / Config.cc
CommitLineData
bbc27441 1/*
f6e9a3ee 2 * Copyright (C) 1996-2019 The Squid Software Foundation and contributors
bbc27441
AJ
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
f7f3304a 9#include "squid.h"
95d2589c
CT
10#include "ssl/Config.h"
11
12Ssl::Config Ssl::TheConfig;
13
dffc462a
CT
14Ssl::Config::Config():
15#if USE_SSL_CRTD
f53969cc 16 ssl_crtd(NULL),
dffc462a 17#endif
f53969cc 18 ssl_crt_validator(NULL)
86c63190 19{
dffc462a
CT
20 ssl_crt_validator_Children.concurrency = 1;
21}
22
95d2589c
CT
23Ssl::Config::~Config()
24{
25#if USE_SSL_CRTD
26 xfree(ssl_crtd);
27#endif
4a77bb4e 28 xfree(ssl_crt_validator);
95d2589c 29}
f53969cc 30