We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4140bb commit bd02327Copy full SHA for bd02327
src/OpenSSL/SSL.py
@@ -80,6 +80,7 @@
80
"OP_COOKIE_EXCHANGE",
81
"OP_NO_TICKET",
82
"OP_NO_RENEGOTIATION",
83
+ "OP_IGNORE_UNEXPECTED_EOF",
84
"OP_ALL",
85
"VERIFY_PEER",
86
"VERIFY_FAIL_IF_NO_PEER_CERT",
@@ -205,6 +206,11 @@
205
206
except AttributeError:
207
pass
208
209
+try:
210
+ OP_IGNORE_UNEXPECTED_EOF = _lib.SSL_OP_IGNORE_UNEXPECTED_EOF
211
+except AttributeError:
212
+ pass
213
+
214
OP_ALL = _lib.SSL_OP_ALL
215
216
VERIFY_PEER = _lib.SSL_VERIFY_PEER
0 commit comments