]> 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 eaf249681f99a633a7b11c882521b7a89cfe24a0..ee3fd167b1716d3446eb03a8dbd431f18fc50060 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1996-2014 The Squid Software Foundation and contributors
+ * 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.
 
 #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 *>
 {
     MEMPROXY_CLASS(ACLSslErrorData);
 
 public:
-    ACLSslErrorData();
+    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;
 };
 
 #endif /* SQUID_ACLSSL_ERRORDATA_H */
+