aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cffi_src
diff options
context:
space:
mode:
authorTerry Chia <terrycwk1994@gmail.com>2015-08-28 23:15:47 +0800
committerTerry Chia <terrycwk1994@gmail.com>2015-08-28 23:15:47 +0800
commitaad39497b8fd352dff4342d41d3eb69b0225dc10 (patch)
treef39d0cf3e73b8922f5388fd84d008dffde88523a /src/_cffi_src
parent8e1912bb0e2102e7e9341a2fb69ffaa2d3346157 (diff)
downloadcryptography-aad39497b8fd352dff4342d41d3eb69b0225dc10.tar.gz
cryptography-aad39497b8fd352dff4342d41d3eb69b0225dc10.tar.bz2
cryptography-aad39497b8fd352dff4342d41d3eb69b0225dc10.zip
Add SSL_renegotiate binding.
Diffstat (limited to 'src/_cffi_src')
-rw-r--r--src/_cffi_src/openssl/ssl.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/ssl.py b/src/_cffi_src/openssl/ssl.py
index 798fcb16..f14aaba7 100644
--- a/src/_cffi_src/openssl/ssl.py
+++ b/src/_cffi_src/openssl/ssl.py
@@ -205,6 +205,7 @@ Cryptography_STACK_OF_X509_NAME *SSL_get_client_CA_list(const SSL *);
int SSL_get_error(const SSL *, int);
int SSL_do_handshake(SSL *);
int SSL_shutdown(SSL *);
+int SSL_renegotiate(SSL *);
const char *SSL_get_cipher_list(const SSL *, int);
Cryptography_STACK_OF_SSL_CIPHER *SSL_get_ciphers(const SSL *);