mirror of
https://github.com/nginx/nginx.git
synced 2026-08-27 04:07:18 +00:00
SSL: logging level of "invalid alert" errors.
The SSL_R_INVALID_ALERT ("invalid alert") errors are reported by OpenSSL
1.1.1 or newer if the client sends a malformed alert. These errors are
now logged at the "info" level.
Signed-off-by: Aleksei Bavshin <a.bavshin@nginx.com>
Origin: <https://freenginx.org/hg/nginx/rev/d89e0386b695>
This commit is contained in:
parent
06c9d63fc8
commit
aa09c19992
1 changed files with 3 additions and 0 deletions
|
|
@ -3897,6 +3897,9 @@ ngx_ssl_connection_error(ngx_connection_t *c, int sslerr, ngx_err_t err,
|
|||
|| n == SSL_R_NO_SHARED_CIPHER /* 193 */
|
||||
#ifdef SSL_R_PACKET_LENGTH_TOO_LONG
|
||||
|| n == SSL_R_PACKET_LENGTH_TOO_LONG /* 198 */
|
||||
#endif
|
||||
#ifdef SSL_R_INVALID_ALERT
|
||||
|| n == SSL_R_INVALID_ALERT /* 205 */
|
||||
#endif
|
||||
|| n == SSL_R_RECORD_LENGTH_MISMATCH /* 213 */
|
||||
#ifdef SSL_R_TOO_MANY_WARNING_ALERTS
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue