]> git.ipfire.org Git - thirdparty/squid.git/blame - src/ssl/Config.cc
Maintenance: Removed most NULLs using modernize-use-nullptr (#1075)
[thirdparty/squid.git] / src / ssl / Config.cc
CommitLineData
bbc27441 1/*
bf95c10a 2 * Copyright (C) 1996-2022 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
aee3523a 16 ssl_crtd(nullptr),
dffc462a 17#endif
aee3523a 18 ssl_crt_validator(nullptr)
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