diff options
-rw-r--r-- | src/mod_openssl.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mod_openssl.c b/src/mod_openssl.c index 88520edb..af69068f 100644 --- a/src/mod_openssl.c +++ b/src/mod_openssl.c @@ -1451,6 +1451,14 @@ connection_read_cq_ssl (server *srv, connection *con, switch(oerrno) { default: + /* (oerrno should be something like ECONNABORTED not 0 + * if client disconnected before anything was sent + * (e.g. TCP connection probe), but it does not appear + * that openssl provides such notification, not even + * something like SSL_R_SSL_HANDSHAKE_FAILURE) */ + if (0==oerrno && 0==cq->bytes_in && !hctx->conf.ssl_log_noise) + break; + log_error_write(srv, __FILE__, __LINE__, "sddds", "SSL:", len, r, oerrno, strerror(oerrno)); |