aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2019-11-12 04:06:39 +0100
committerAlex Gaynor <alex.gaynor@gmail.com>2019-11-11 22:06:39 -0500
commit9481b8f483c5a477e2de70935cf30080be95fe54 (patch)
treebe31e8d8991b35a7200a51a987239666f0320cd7 /src
parentb5decbac5fdfe0c2f552475a38839e9b38968809 (diff)
downloadcryptography-9481b8f483c5a477e2de70935cf30080be95fe54.tar.gz
cryptography-9481b8f483c5a477e2de70935cf30080be95fe54.tar.bz2
cryptography-9481b8f483c5a477e2de70935cf30080be95fe54.zip
add SSL[_CTX]_clear_mode (#5062)
Diffstat (limited to 'src')
-rw-r--r--src/_cffi_src/openssl/ssl.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/ssl.py b/src/_cffi_src/openssl/ssl.py
index 307cce46..4e91823c 100644
--- a/src/_cffi_src/openssl/ssl.py
+++ b/src/_cffi_src/openssl/ssl.py
@@ -338,6 +338,7 @@ const COMP_METHOD *SSL_get_current_expansion(SSL *);
const char *SSL_COMP_get_name(const COMP_METHOD *);
unsigned long SSL_set_mode(SSL *, unsigned long);
+unsigned long SSL_clear_mode(SSL *, unsigned long);
unsigned long SSL_get_mode(SSL *);
unsigned long SSL_set_options(SSL *, unsigned long);
@@ -359,6 +360,7 @@ unsigned long SSL_CTX_set_options(SSL_CTX *, unsigned long);
unsigned long SSL_CTX_clear_options(SSL_CTX *, unsigned long);
unsigned long SSL_CTX_get_options(SSL_CTX *);
unsigned long SSL_CTX_set_mode(SSL_CTX *, unsigned long);
+unsigned long SSL_CTX_clear_mode(SSL_CTX *, unsigned long);
unsigned long SSL_CTX_get_mode(SSL_CTX *);
unsigned long SSL_CTX_set_session_cache_mode(SSL_CTX *, unsigned long);
unsigned long SSL_CTX_get_session_cache_mode(SSL_CTX *);