aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhiBo <phibo@dinotools.org>2014-05-07 01:39:12 +0200
committerPhiBo <phibo@dinotools.org>2014-05-07 01:39:12 +0200
commit5d2053701af93db5c3a0eadf39c46bcde4287b18 (patch)
treec782efafbb3c909a8b91e19f0f3645ed98282fad
parentb6f6cdecfc7b82d15a766a13f0d5ca6c5893c82d (diff)
downloadcryptography-5d2053701af93db5c3a0eadf39c46bcde4287b18.tar.gz
cryptography-5d2053701af93db5c3a0eadf39c46bcde4287b18.tar.bz2
cryptography-5d2053701af93db5c3a0eadf39c46bcde4287b18.zip
Add missing type SSL_OP_LEGACY_SERVER_CONNECT
-rw-r--r--cryptography/hazmat/bindings/openssl/ssl.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/cryptography/hazmat/bindings/openssl/ssl.py b/cryptography/hazmat/bindings/openssl/ssl.py
index d4671a5c..cd8fa1cf 100644
--- a/cryptography/hazmat/bindings/openssl/ssl.py
+++ b/cryptography/hazmat/bindings/openssl/ssl.py
@@ -88,6 +88,7 @@ static const long SSL_OP_NO_TICKET;
static const long SSL_OP_ALL;
static const long SSL_OP_SINGLE_ECDH_USE;
static const long SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION;
+static const long SSL_OP_LEGACY_SERVER_CONNECT;
static const long SSL_VERIFY_PEER;
static const long SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
static const long SSL_VERIFY_CLIENT_ONCE;