enable X509_V_FLAG_TRUSTED_FIRST when possible (closes #23476)

This commit is contained in:
Benjamin Peterson 2015-03-04 22:11:12 -05:00
parent 20f4bd4a04
commit fdb1971587
2 changed files with 12 additions and 0 deletions

View file

@ -13,6 +13,9 @@ Core and Builtins
Library
-------
- Issue #23476: In the ssl module, enable OpenSSL's X509_V_FLAG_TRUSTED_FIRST
flag on certificate stores when it is available.
- Issue #23576: Avoid stalling in SSL reads when EOF has been reached in the
SSL layer but the underlying connection hasn't been closed.