]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/ssl/Config.cc
Source Format Enforcement (#1234)
[thirdparty/squid.git] / src / ssl / Config.cc
index faf66eddde9eed025c51bda13a2cad594553972c..ee376e8e243d5fef2b5ec82a00cf85f028339936 100644 (file)
@@ -1,17 +1,23 @@
 /*
- * $Id$
+ * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
+ *
+ * Squid software is distributed under GPLv2+ license and includes
+ * contributions from numerous individuals and organizations.
+ * Please see the COPYING and CONTRIBUTORS files for details.
  */
 
+#include "squid.h"
 #include "ssl/Config.h"
 
 Ssl::Config Ssl::TheConfig;
 
-Ssl::Config::Config()
+Ssl::Config::Config():
 #if USE_SSL_CRTD
-        :
-        ssl_crtd(NULL)
+    ssl_crtd(nullptr),
 #endif
+    ssl_crt_validator(nullptr)
 {
+    ssl_crt_validator_Children.concurrency = 1;
 }
 
 Ssl::Config::~Config()
@@ -19,4 +25,6 @@ Ssl::Config::~Config()
 #if USE_SSL_CRTD
     xfree(ssl_crtd);
 #endif
+    xfree(ssl_crt_validator);
 }
+