aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2024-05-31 22:33:07 +0200
committerRodrigo Arias Mallo <rodarima@gmail.com>2024-06-01 21:12:51 +0200
commitc8080eb22362630b7a735d30da55dd23779cd83c (patch)
tree25b13b31775fa38a19e35149d61e233b6110c0c7 /ChangeLog
parentdbe0c669409bb441a8464d0cd8a034c1a266f9e5 (diff)
Handle SSL_ERROR_ZERO_RETURN in OpenSSL
It may be returned when the server closes the connection, see: https://www.openssl.org/docs/manmaster/man3/SSL_get_error.html We simply handle it as if there was no error and return zero bytes read. Fixes: https://github.com/dillo-browser/dillo/issues/175
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog2
1 files changed, 2 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9026442f..f073f389 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,6 +11,8 @@ dillo-3.1.1 [not released yet]
+- Disable TLSv1.3 in Mbed TLS 3.6.0 until it is supported.
- Add workaround for Cygwin and OpenSSL with --disable-threaded-dns.
- Fix distcheck when HTML tests are enabled.
+ - Fix an OpenSSL bug when the server closes the connection prematurely and
+ SSL_get_error() returns SSL_ERROR_ZERO_RETURN.
Patches: Rodrigo Arias Mallo <rodarima@gmail.com>
+- Add HTML tests to the distributed tarball.
Patches: Matt Jolly