diff options
author | Maxim Dounin <mdounin@mdounin.ru> | 2014-11-17 16:38:48 +0300 |
---|---|---|
committer | Maxim Dounin <mdounin@mdounin.ru> | 2014-11-17 16:38:48 +0300 |
commit | 1fd4cd0b96dfe5e87c652da93737add073fda34b (patch) | |
tree | 9996b5a26c32ffc1ad63a5b2e72739d33a488fec /src | |
parent | d9f5baa0b8e45beae8c76b31318d5ae9dbf013da (diff) | |
download | nginx-1fd4cd0b96dfe5e87c652da93737add073fda34b.tar.gz nginx-1fd4cd0b96dfe5e87c652da93737add073fda34b.zip |
SSL: logging level of "inappropriate fallback" (ticket #662).
Patch by Erik Dubbelboer.
Diffstat (limited to 'src')
-rw-r--r-- | src/event/ngx_event_openssl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/event/ngx_event_openssl.c b/src/event/ngx_event_openssl.c index 77600298c..ab54d88c4 100644 --- a/src/event/ngx_event_openssl.c +++ b/src/event/ngx_event_openssl.c @@ -1858,6 +1858,9 @@ ngx_ssl_connection_error(ngx_connection_t *c, int sslerr, ngx_err_t err, #ifdef SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING || n == SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING /* 345 */ #endif +#ifdef SSL_R_INAPPROPRIATE_FALLBACK + || n == SSL_R_INAPPROPRIATE_FALLBACK /* 373 */ +#endif || n == 1000 /* SSL_R_SSLV3_ALERT_CLOSE_NOTIFY */ || n == SSL_R_SSLV3_ALERT_UNEXPECTED_MESSAGE /* 1010 */ || n == SSL_R_SSLV3_ALERT_BAD_RECORD_MAC /* 1020 */ |