aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cffi_src/openssl
diff options
context:
space:
mode:
authorStelios <stelios.ioannou@circles.bz>2015-07-06 09:15:06 +0300
committerStelios <stelios.ioannou@circles.bz>2015-07-06 09:15:06 +0300
commit8075a8c6bd75a2640ba90033315c8e4a5d5c536a (patch)
tree4a75aac2d84321457e557b60fe9e0c3ef788ffc0 /src/_cffi_src/openssl
parent5b57cbfbd735604a9589cb0cf8950ec858b94f7d (diff)
downloadcryptography-8075a8c6bd75a2640ba90033315c8e4a5d5c536a.tar.gz
cryptography-8075a8c6bd75a2640ba90033315c8e4a5d5c536a.tar.bz2
cryptography-8075a8c6bd75a2640ba90033315c8e4a5d5c536a.zip
Exposed the SSL_peek functionality
Diffstat (limited to 'src/_cffi_src/openssl')
-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 fa0aefc8..5841ee2f 100644
--- a/src/_cffi_src/openssl/ssl.py
+++ b/src/_cffi_src/openssl/ssl.py
@@ -182,6 +182,7 @@ int SSL_get_shutdown(const SSL *);
int SSL_pending(const SSL *);
int SSL_write(SSL *, const void *, int);
int SSL_read(SSL *, void *, int);
+int SSL_peek(SSL *, void *, int);
X509 *SSL_get_peer_certificate(const SSL *);
int SSL_get_ex_data_X509_STORE_CTX_idx(void);