summaryrefslogtreecommitdiffhomepage
path: root/src/event
diff options
context:
space:
mode:
authorRoman Arutyunyan <arut@nginx.com>2025-12-16 17:53:12 +0400
committerRoman Arutyunyan <arutyunyan.roman@gmail.com>2025-12-17 13:49:06 +0400
commit0609736a92a72d269119c5bab1e518c4d9fb54da (patch)
tree6e4b034e6632ecb8086f45bddea0742079167f9f /src/event
parent7c2524a6926918900243a75c5d85c1399ce54bbd (diff)
downloadnginx-0609736a92a72d269119c5bab1e518c4d9fb54da.tar.gz
nginx-0609736a92a72d269119c5bab1e518c4d9fb54da.tar.bz2
SSL: logging level of the "ech_required" TLS alert.
The alert is send by a client after its ECH configuration was rejected by a server.
Diffstat (limited to 'src/event')
-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 d7a514852..d1386d3a6 100644
--- a/src/event/ngx_event_openssl.c
+++ b/src/event/ngx_event_openssl.c
@@ -4012,6 +4012,7 @@ ngx_ssl_connection_error(ngx_connection_t *c, int sslerr, ngx_err_t err,
|| n == SSL_R_TLSV1_ALERT_USER_CANCELLED /* 1090 */
|| n == SSL_R_TLSV1_ALERT_NO_RENEGOTIATION /* 1100 */
#endif
+ || n == 1121 /* SSL_R_TLSV1_ALERT_ECH_REQUIRED */
)
{
switch (c->log_error) {