]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/ssl/Config.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / ssl / Config.h
index 4d5f7f34f9e7840c8b73027a61bfe439d26e906f..5ddd002fa14d43d98f391f45be636a3c92e6b6e7 100644 (file)
@@ -1,12 +1,15 @@
 /*
- * $Id$
+ * 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 "config.h"
-#include "HelperChildConfig.h"
+#include "helper/ChildConfig.h"
 
 namespace Ssl
 {
@@ -17,8 +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
+    char *ssl_crt_validator;
+    ::Helper::ChildConfig ssl_crt_validator_Children;
     Config();
     ~Config();
 private:
@@ -30,3 +35,4 @@ extern Config TheConfig;
 
 } // namespace Ssl
 #endif
+