BUG/MINOR: ssl: error is not reported if it occurs simultaneously with peer close detection.
diff --git a/src/ssl_sock.c b/src/ssl_sock.c
index 7415b75..99f22f6 100644
--- a/src/ssl_sock.c
+++ b/src/ssl_sock.c
@@ -1078,6 +1078,11 @@
else if (ret == 0) {
ret = SSL_get_error(conn->xprt_ctx, ret);
if (ret != SSL_ERROR_ZERO_RETURN) {
+ /* error on protocol or underlying transport */
+ if ((ret != SSL_ERROR_SYSCALL)
+ || (errno && (errno != EAGAIN)))
+ conn->flags |= CO_FL_ERROR;
+
/* Clear openssl global errors stack */
ERR_clear_error();
}