diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-07-06 07:04:45 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-07-06 07:04:45 -0400 |
commit | 11bd1a13627098468707177a1e1fddfc92601ff3 (patch) | |
tree | af92b7339d051d3abd46e7c32f37dbe908a01b20 /src/_cffi_src | |
parent | ad8f19d1f4210f010aa275b2d63242cf98475c2b (diff) | |
parent | 8075a8c6bd75a2640ba90033315c8e4a5d5c536a (diff) | |
download | cryptography-11bd1a13627098468707177a1e1fddfc92601ff3.tar.gz cryptography-11bd1a13627098468707177a1e1fddfc92601ff3.tar.bz2 cryptography-11bd1a13627098468707177a1e1fddfc92601ff3.zip |
Merge pull request #2119 from stjoannou/master
Exposed the SSL_peek functionality
Diffstat (limited to 'src/_cffi_src')
-rw-r--r-- | src/_cffi_src/openssl/ssl.py | 1 |
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); |