diff options
author | Remko Tronçon <git@el-tramo.be> | 2012-04-24 18:50:22 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2012-04-24 20:08:54 (GMT) |
commit | 856f970d14c5c32b80fc5ea359d4e567b51578a0 (patch) | |
tree | 4e1d5574d94f90a6caf6e601b410597fb7184f7f /Swiften/TLS/OpenSSL | |
parent | e33b7a309e0424450ab00bc6180df95c6c049195 (diff) | |
download | swift-contrib-856f970d14c5c32b80fc5ea359d4e567b51578a0.zip swift-contrib-856f970d14c5c32b80fc5ea359d4e567b51578a0.tar.bz2 |
Re-enable revocation check.
Added a method on TLSContextFactory to disable revocation checks if
wanted.
Diffstat (limited to 'Swiften/TLS/OpenSSL')
-rw-r--r-- | Swiften/TLS/OpenSSL/OpenSSLContextFactory.cpp | 8 | ||||
-rw-r--r-- | Swiften/TLS/OpenSSL/OpenSSLContextFactory.h | 5 |
2 files changed, 13 insertions, 0 deletions
diff --git a/Swiften/TLS/OpenSSL/OpenSSLContextFactory.cpp b/Swiften/TLS/OpenSSL/OpenSSLContextFactory.cpp index 516482d..6cd3c83 100644 --- a/Swiften/TLS/OpenSSL/OpenSSLContextFactory.cpp +++ b/Swiften/TLS/OpenSSL/OpenSSLContextFactory.cpp @@ -6,6 +6,7 @@ #include <Swiften/TLS/OpenSSL/OpenSSLContextFactory.h> #include <Swiften/TLS/OpenSSL/OpenSSLContext.h> +#include <Swiften/Base/Log.h> namespace Swift { @@ -17,4 +18,11 @@ TLSContext* OpenSSLContextFactory::createTLSContext() { return new OpenSSLContext(); } +void OpenSSLContextFactory::setCheckCertificateRevocation(bool) { + assert(false); + SWIFT_LOG(warning) << "CRL Checking not supported for OpenSSL" << std::endl; +} + + + } diff --git a/Swiften/TLS/OpenSSL/OpenSSLContextFactory.h b/Swiften/TLS/OpenSSL/OpenSSLContextFactory.h index 4e39cd6..43ab960 100644 --- a/Swiften/TLS/OpenSSL/OpenSSLContextFactory.h +++ b/Swiften/TLS/OpenSSL/OpenSSLContextFactory.h @@ -8,10 +8,15 @@ #include <Swiften/TLS/TLSContextFactory.h> +#include <cassert> + namespace Swift { class OpenSSLContextFactory : public TLSContextFactory { public: bool canCreate() const; virtual TLSContext* createTLSContext(); + + // Not supported + virtual void setCheckCertificateRevocation(bool b); }; } |