diff options
Diffstat (limited to 'Swiften/TLS/OpenSSL')
| -rw-r--r-- | Swiften/TLS/OpenSSL/OpenSSLContextFactory.cpp | 2 | ||||
| -rw-r--r-- | Swiften/TLS/OpenSSL/OpenSSLContextFactory.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/TLS/OpenSSL/OpenSSLContextFactory.cpp b/Swiften/TLS/OpenSSL/OpenSSLContextFactory.cpp index 5fbc913..50f6731 100644 --- a/Swiften/TLS/OpenSSL/OpenSSLContextFactory.cpp +++ b/Swiften/TLS/OpenSSL/OpenSSLContextFactory.cpp | |||
| @@ -14,7 +14,7 @@ bool OpenSSLContextFactory::canCreate() const { | |||
| 14 | return true; | 14 | return true; |
| 15 | } | 15 | } |
| 16 | 16 | ||
| 17 | TLSContext* OpenSSLContextFactory::createTLSContext() { | 17 | TLSContext* OpenSSLContextFactory::createTLSContext(const TLSOptions&) { |
| 18 | return new OpenSSLContext(); | 18 | return new OpenSSLContext(); |
| 19 | } | 19 | } |
| 20 | 20 | ||
diff --git a/Swiften/TLS/OpenSSL/OpenSSLContextFactory.h b/Swiften/TLS/OpenSSL/OpenSSLContextFactory.h index 8e689b5..bf7f08a 100644 --- a/Swiften/TLS/OpenSSL/OpenSSLContextFactory.h +++ b/Swiften/TLS/OpenSSL/OpenSSLContextFactory.h | |||
| @@ -14,7 +14,7 @@ namespace Swift { | |||
| 14 | class OpenSSLContextFactory : public TLSContextFactory { | 14 | class OpenSSLContextFactory : public TLSContextFactory { |
| 15 | public: | 15 | public: |
| 16 | bool canCreate() const; | 16 | bool canCreate() const; |
| 17 | virtual TLSContext* createTLSContext(); | 17 | virtual TLSContext* createTLSContext(const TLSOptions& tlsOptions); |
| 18 | 18 | ||
| 19 | // Not supported | 19 | // Not supported |
| 20 | virtual void setCheckCertificateRevocation(bool b); | 20 | virtual void setCheckCertificateRevocation(bool b); |
Swift