diff options
author | Remko Tronçon <git@el-tramo.be> | 2012-05-12 18:09:25 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2012-05-12 18:09:25 (GMT) |
commit | 159e773b156f531575d0d7e241e2d20c85ee6d7c (patch) | |
tree | 9116f69b5f20ec07060b73308427ab524305344f /Swiften/TLS/CertificateTrustChecker.h | |
parent | 0f91f88ac69644fb7e7bdbf601b7e098194490fa (diff) | |
download | swift-contrib-159e773b156f531575d0d7e241e2d20c85ee6d7c.zip swift-contrib-159e773b156f531575d0d7e241e2d20c85ee6d7c.tar.bz2 |
Show Certificate dialog from certificate error window.
Diffstat (limited to 'Swiften/TLS/CertificateTrustChecker.h')
-rw-r--r-- | Swiften/TLS/CertificateTrustChecker.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Swiften/TLS/CertificateTrustChecker.h b/Swiften/TLS/CertificateTrustChecker.h index 06c0c32..91cc530 100644 --- a/Swiften/TLS/CertificateTrustChecker.h +++ b/Swiften/TLS/CertificateTrustChecker.h @@ -10,6 +10,7 @@ #include <string> #include <Swiften/TLS/Certificate.h> +#include <vector> namespace Swift { /** @@ -23,7 +24,10 @@ namespace Swift { * This method is called to find out whether a certificate is * trusted. This usually happens when a certificate's validation * fails, to check whether to proceed with the connection or not. + * + * certificateChain contains the chain of certificates, if available. + * This chain includes certificate. */ - virtual bool isCertificateTrusted(Certificate::ref certificate) = 0; + virtual bool isCertificateTrusted(Certificate::ref certificate, const std::vector<Certificate::ref>& certificateChain) = 0; }; } |