diff options
author | Remko Tronçon <git@el-tramo.be> | 2012-05-05 16:08:55 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2012-05-05 16:08:55 (GMT) |
commit | 501a4a43c9a95b3611bf91b8693fffc8814954b4 (patch) | |
tree | 1ab0d89a982392941503832fb968b72aab09422f /Swiften/TLS/OpenSSL/OpenSSLContextFactory.h | |
parent | 9c11acbb8801186bafa29ff820d368512590396a (diff) | |
download | swift-contrib-501a4a43c9a95b3611bf91b8693fffc8814954b4.zip swift-contrib-501a4a43c9a95b3611bf91b8693fffc8814954b4.tar.bz2 |
Re-enable revocation check.
Diffstat (limited to 'Swiften/TLS/OpenSSL/OpenSSLContextFactory.h')
-rw-r--r-- | Swiften/TLS/OpenSSL/OpenSSLContextFactory.h | 5 |
1 files changed, 5 insertions, 0 deletions
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); }; } |