aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-07-06 07:04:45 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2015-07-06 07:04:45 -0400
commit11bd1a13627098468707177a1e1fddfc92601ff3 (patch)
treeaf92b7339d051d3abd46e7c32f37dbe908a01b20
parentad8f19d1f4210f010aa275b2d63242cf98475c2b (diff)
parent8075a8c6bd75a2640ba90033315c8e4a5d5c536a (diff)
downloadcryptography-11bd1a13627098468707177a1e1fddfc92601ff3.tar.gz
cryptography-11bd1a13627098468707177a1e1fddfc92601ff3.tar.bz2
cryptography-11bd1a13627098468707177a1e1fddfc92601ff3.zip
Merge pull request #2119 from stjoannou/master
Exposed the SSL_peek functionality
-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);