diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-03-26 19:27:16 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-03-26 19:27:16 (GMT) |
commit | eee91cda8012d7d39c0401a0465af736aa2d136a (patch) | |
tree | e79fdbcb7ceb5d3bf26408c7ae2a53fd14119894 /Misc | |
parent | c7024e7fd61e349ed51e625d3649b9f09c1436b5 (diff) | |
download | cpython-eee91cda8012d7d39c0401a0465af736aa2d136a.zip cpython-eee91cda8012d7d39c0401a0465af736aa2d136a.tar.gz cpython-eee91cda8012d7d39c0401a0465af736aa2d136a.tar.bz2 |
Issue #8222: Enable the SSL_MODE_AUTO_RETRY flag on SSL sockets, so that blocking
reads and writes are always retried by OpenSSL itself.
(this is a followup to issue #3890)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -59,7 +59,9 @@ Library - Issue #8200: logging: Handle errors when multiprocessing is not fully loaded when logging occurs. -- Issue #3890: Fix recv() and recv_into() on non-blocking SSL sockets. +- Issue #3890, #8222: Fix recv() and recv_into() on non-blocking SSL sockets. + Also, enable the SSL_MODE_AUTO_RETRY flag on SSL sockets, so that blocking + reads and writes are always retried by OpenSSL itself. - Issue #8179: Fix macpath.realpath() on a non-existing path. |