aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2008-02-04 20:46:58 +0000
committerIgor Sysoev <igor@sysoev.ru>2008-02-04 20:46:58 +0000
commit704e1c132487c94be29f59d2b36bf3a32b2c7d5f (patch)
tree391d0ab2fec1866dde143fe3ddeee5f29c769184
parentb1d4a6cc801c5c898cdbaaf9cffd650a195e8582 (diff)
downloadnginx-704e1c132487c94be29f59d2b36bf3a32b2c7d5f.tar.gz
nginx-704e1c132487c94be29f59d2b36bf3a32b2c7d5f.zip
low SSL handshake close notify alert error level
-rw-r--r--src/event/ngx_event_openssl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/event/ngx_event_openssl.c b/src/event/ngx_event_openssl.c
index d4b565cb9..8ba3e8e39 100644
--- a/src/event/ngx_event_openssl.c
+++ b/src/event/ngx_event_openssl.c
@@ -1158,6 +1158,7 @@ ngx_ssl_connection_error(ngx_connection_t *c, int sslerr, ngx_err_t err,
if (n == SSL_R_NO_SHARED_CIPHER
|| n == SSL_R_UNEXPECTED_MESSAGE
|| n == SSL_R_WRONG_VERSION_NUMBER
+ || n == 1000 /* SSL_R_SSLV3_ALERT_CLOSE_NOTIFY */
|| n == SSL_R_SSLV3_ALERT_CERTIFICATE_EXPIRED
|| n == SSL_R_SSLV3_ALERT_ILLEGAL_PARAMETER
|| n == SSL_R_TLSV1_ALERT_UNKNOWN_CA)