diff options
| author | Sergey Kandaurov <pluknet@nginx.com> | 2025-05-06 15:09:28 +0400 |
|---|---|---|
| committer | Roman Arutyunyan <arutyunyan.roman@gmail.com> | 2025-05-23 15:00:47 +0400 |
| commit | ef9cd3214ff3d9d1513da8927423f42184dcf8e5 (patch) | |
| tree | 5f85932e43e232427f1e7e9ec69fb20e1d83729c /src/event/ngx_event_openssl.h | |
| parent | aa43385ffa9acda2f9a45265bbe8e9213d9a840e (diff) | |
| download | nginx-ef9cd3214ff3d9d1513da8927423f42184dcf8e5.tar.gz nginx-ef9cd3214ff3d9d1513da8927423f42184dcf8e5.tar.bz2 | |
QUIC: logging level of handshake errors.
Various errors reported by SSL_do_handshake() are now logged at the
"info" or "crit" level, akin to handshakes on regular TCP connections.
Diffstat (limited to 'src/event/ngx_event_openssl.h')
| -rw-r--r-- | src/event/ngx_event_openssl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/event/ngx_event_openssl.h b/src/event/ngx_event_openssl.h index d4a62b82a..9e68deb44 100644 --- a/src/event/ngx_event_openssl.h +++ b/src/event/ngx_event_openssl.h @@ -361,6 +361,8 @@ ngx_chain_t *ngx_ssl_send_chain(ngx_connection_t *c, ngx_chain_t *in, off_t limit); void ngx_ssl_free_buffer(ngx_connection_t *c); ngx_int_t ngx_ssl_shutdown(ngx_connection_t *c); +void ngx_ssl_connection_error(ngx_connection_t *c, int sslerr, ngx_err_t err, + char *text); void ngx_cdecl ngx_ssl_error(ngx_uint_t level, ngx_log_t *log, ngx_err_t err, char *fmt, ...); void ngx_ssl_cleanup_ctx(void *data); |
