diff options
author | Christian Heimes <christian@python.org> | 2021-04-09 15:59:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 15:59:21 (GMT) |
commit | 6f37ebc61e9e0d13bcb1a2ddb7fc9723c04b6372 (patch) | |
tree | 9628d3fbacd52f426f15aa90150542d1acd7cb9b /Doc | |
parent | 507a574de31a1bd7fed8ba4f04afa285d985109b (diff) | |
download | cpython-6f37ebc61e9e0d13bcb1a2ddb7fc9723c04b6372.zip cpython-6f37ebc61e9e0d13bcb1a2ddb7fc9723c04b6372.tar.gz cpython-6f37ebc61e9e0d13bcb1a2ddb7fc9723c04b6372.tar.bz2 |
bpo-43794: OpenSSL 3.0.0: set OP_IGNORE_UNEXPECTED_EOF by default (GH-25309)
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ssl.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 9333168..587d3b3 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -893,6 +893,14 @@ Constants .. versionadded:: 3.6 +.. data:: OP_IGNORE_UNEXPECTED_EOF + + Ignore unexpected shutdown of TLS connections. + + This option is only available with OpenSSL 3.0.0 and later. + + .. versionadded:: 3.10 + .. data:: HAS_ALPN Whether the OpenSSL library has built-in support for the *Application-Layer |