31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
--- src/cryptography/hazmat/bindings/openssl/ssl.py.orig 2015-01-16 13:26:59 UTC
|
|
+++ src/cryptography/hazmat/bindings/openssl/ssl.py
|
|
@@ -189,10 +189,6 @@ int SSL_shutdown(SSL *);
|
|
const char *SSL_get_cipher_list(const SSL *, int);
|
|
Cryptography_STACK_OF_SSL_CIPHER *SSL_get_ciphers(const SSL *);
|
|
|
|
-const COMP_METHOD *SSL_get_current_compression(SSL *);
|
|
-const COMP_METHOD *SSL_get_current_expansion(SSL *);
|
|
-const char *SSL_COMP_get_name(const COMP_METHOD *);
|
|
-
|
|
/* context */
|
|
void SSL_CTX_free(SSL_CTX *);
|
|
long SSL_CTX_set_timeout(SSL_CTX *, long);
|
|
@@ -415,6 +411,16 @@ static const long Cryptography_HAS_RELEA
|
|
const long SSL_MODE_RELEASE_BUFFERS = 0;
|
|
#endif
|
|
|
|
+#ifndef OPENSSL_NO_COMP
|
|
+const COMP_METHOD *SSL_get_current_compression(SSL *s);
|
|
+const COMP_METHOD *SSL_get_current_expansion(SSL *s);
|
|
+const char *SSL_COMP_get_name(const COMP_METHOD *comp);
|
|
+#else
|
|
+const void *SSL_get_current_compression(SSL *s);
|
|
+const void *SSL_get_current_expansion(SSL *s);
|
|
+const char *SSL_COMP_get_name(const void *comp);
|
|
+#endif
|
|
+
|
|
#ifdef SSL_OP_NO_COMPRESSION
|
|
static const long Cryptography_HAS_OP_NO_COMPRESSION = 1;
|
|
#else
|