]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/ssl/Config.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / ssl / Config.cc
index 0060df8ab446b6453a560ed5684109423c980fcc..aa363335471e804a3404cd3c9be8768cfb800bfd 100644 (file)
@@ -1,8 +1,25 @@
+/*
+ * Copyright (C) 1996-2017 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():
+#if USE_SSL_CRTD
+    ssl_crtd(NULL),
+#endif
+    ssl_crt_validator(NULL)
+{
+    ssl_crt_validator_Children.concurrency = 1;
+}
+
 Ssl::Config::~Config()
 {
 #if USE_SSL_CRTD
@@ -10,3 +27,4 @@ Ssl::Config::~Config()
 #endif
     xfree(ssl_crt_validator);
 }
+