]> git.kaiwu.me - nginx.git/commitdiff
decrease SSL handshake error level to info
authorIgor Sysoev <igor@sysoev.ru>
Fri, 19 Feb 2010 20:54:58 +0000 (20:54 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Fri, 19 Feb 2010 20:54:58 +0000 (20:54 +0000)
src/event/ngx_event_openssl.c

index d4b5683d6495360f987acc5e4fb2bf7b28981e3b..b8886fcc2c550d7fe91c5f3d69ab6f342dab6e34 100644 (file)
@@ -1308,10 +1308,14 @@ ngx_ssl_connection_error(ngx_connection_t *c, int sslerr, ngx_err_t err,
 
             /* handshake failures */
         if (n == SSL_R_DIGEST_CHECK_FAILED                           /*  149 */
+            || n == SSL_R_LENGTH_MISMATCH                            /*  159 */
             || n == SSL_R_NO_CIPHERS_PASSED                          /*  182 */
+            || n == SSL_R_NO_CIPHERS_SPECIFIED                       /*  183 */
             || n == SSL_R_NO_SHARED_CIPHER                           /*  193 */
+            || n == SSL_R_RECORD_LENGTH_MISMATCH                     /*  213 */
             || n == SSL_R_UNEXPECTED_MESSAGE                         /*  244 */
             || n == SSL_R_UNEXPECTED_RECORD                          /*  245 */
+            || n == SSL_R_UNKNOWN_ALERT_TYPE                         /*  246 */
             || n == SSL_R_UNKNOWN_PROTOCOL                           /*  252 */
             || n == SSL_R_WRONG_VERSION_NUMBER                       /*  267 */
             || n == SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC        /*  281 */