diff options
Diffstat (limited to 'Swiften/TLS/OpenSSL/OpenSSLContext.cpp')
| -rw-r--r-- | Swiften/TLS/OpenSSL/OpenSSLContext.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/Swiften/TLS/OpenSSL/OpenSSLContext.cpp b/Swiften/TLS/OpenSSL/OpenSSLContext.cpp index 30a2b11..e922f2d 100644 --- a/Swiften/TLS/OpenSSL/OpenSSLContext.cpp +++ b/Swiften/TLS/OpenSSL/OpenSSLContext.cpp @@ -68,6 +68,11 @@ void OpenSSLContext::ensureLibraryInitialized() {  		SSL_load_error_strings();  		SSL_library_init();  		OpenSSL_add_all_algorithms(); + +		// Disable compression +		/*STACK_OF(SSL_COMP)* compressionMethods = SSL_COMP_get_compression_methods(); +		sk_SSL_COMP_zero(compressionMethods);*/ +  		isLibraryInitialized = true;  	}  }  | 
 Swift