[mod_openssl] quiet trace from TCP probes (#2784)

x-ref:
  "huge amount of "SSL: -1 5 0 Success" messages"
  https://redmine.lighttpd.net/issues/2784
personal/stbuehler/1.4.48-mod-proxy-fix
Glenn Strauss 2017-11-06 21:39:00 -05:00
parent d61714dd0d
commit 06d108855d
1 changed files with 8 additions and 0 deletions

View File

@ -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));