diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-11-23 14:09:57 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-11-23 14:09:57 +0000 |
commit | 8019121120853dbdab475ec9091f0aeb2aad7bbb (patch) | |
tree | db3574377f81f4d833ca412e1564a80b50e8793e | |
parent | 6956db069653311d2d14b3d3a0f4e59bdeda9ae2 (diff) | |
download | nginx-8019121120853dbdab475ec9091f0aeb2aad7bbb.tar.gz nginx-8019121120853dbdab475ec9091f0aeb2aad7bbb.zip |
decrease SSL handshake error level to info
-rw-r--r-- | src/event/ngx_event_openssl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/event/ngx_event_openssl.c b/src/event/ngx_event_openssl.c index 4a3cb82ec..d4b5683d6 100644 --- a/src/event/ngx_event_openssl.c +++ b/src/event/ngx_event_openssl.c @@ -1312,6 +1312,7 @@ ngx_ssl_connection_error(ngx_connection_t *c, int sslerr, ngx_err_t err, || n == SSL_R_NO_SHARED_CIPHER /* 193 */ || n == SSL_R_UNEXPECTED_MESSAGE /* 244 */ || n == SSL_R_UNEXPECTED_RECORD /* 245 */ + || n == SSL_R_UNKNOWN_PROTOCOL /* 252 */ || n == SSL_R_WRONG_VERSION_NUMBER /* 267 */ || n == SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC /* 281 */ || n == 1000 /* SSL_R_SSLV3_ALERT_CLOSE_NOTIFY */ |