]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/acl/SslErrorData.h
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / acl / SslErrorData.h
index 957b2f94bf18dfb65748f32089f2f0fe1cb3d998..ee3fd167b1716d3446eb03a8dbd431f18fc50060 100644 (file)
@@ -1,31 +1,35 @@
+/*
+ * Copyright (C) 1996-2018 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_ACLSSL_ERRORDATA_H
 #define SQUID_ACLSSL_ERRORDATA_H
+
 #include "acl/Acl.h"
 #include "acl/Data.h"
-#include "CbDataList.h"
-#include "ssl/ErrorDetail.h"
-#include "ssl/support.h"
-#include <vector>
+#include "security/forward.h"
 
-class ACLSslErrorData : public ACLData<const Ssl::CertErrors *>
+class ACLSslErrorData : public ACLData<const Security::CertErrors *>
 {
-
-public:
     MEMPROXY_CLASS(ACLSslErrorData);
 
-    ACLSslErrorData();
+public:
+    ACLSslErrorData() = default;
     ACLSslErrorData(ACLSslErrorData const &);
     ACLSslErrorData &operator= (ACLSslErrorData const &);
-    virtual ~ACLSslErrorData();
-    bool match(const Ssl::CertErrors *);
+    virtual ~ACLSslErrorData() {}
+    bool match(const Security::CertErrors *);
     virtual SBufList dump() const;
     void parse();
-    bool empty() const;
+    bool empty() const { return values.empty(); }
     virtual  ACLSslErrorData *clone() const;
 
-    Ssl::Errors *values;
+    Security::Errors values;
 };
 
-MEMPROXY_CLASS_INLINE(ACLSslErrorData);
-
 #endif /* SQUID_ACLSSL_ERRORDATA_H */
+