]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/ssl/Config.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / ssl / Config.h
index e3a99a4605cff2433563ad7b1ace42c46b51a4c8..5ddd002fa14d43d98f391f45be636a3c92e6b6e7 100644 (file)
@@ -1,7 +1,15 @@
+/*
+ * Copyright (C) 1996-2021 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.
+ */
+
 #ifndef SQUID_SSL_CONFIG_H
 #define SQUID_SSL_CONFIG_H
 
-#include "HelperChildConfig.h"
+#include "helper/ChildConfig.h"
 
 namespace Ssl
 {
@@ -12,12 +20,10 @@ public:
 #if USE_SSL_CRTD
     char *ssl_crtd; ///< Name of external ssl_crtd application.
     /// The number of processes spawn for ssl_crtd.
-    HelperChildConfig ssl_crtdChildren;
+    ::Helper::ChildConfig ssl_crtdChildren;
 #endif
-#if 1 // USE_SSL_CERT_VALIDATOR
     char *ssl_crt_validator;
-    HelperChildConfig ssl_crt_validator_Children;
-#endif
+    ::Helper::ChildConfig ssl_crt_validator_Children;
     Config();
     ~Config();
 private:
@@ -29,3 +35,4 @@ extern Config TheConfig;
 
 } // namespace Ssl
 #endif
+