diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2023-02-23 15:49:59 +0400 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2023-02-23 15:49:59 +0400 |
commit | 1ccba18f00551c75df0365127ad4e146406fafec (patch) | |
tree | fc274c0bea0584af4761451d4bfae6d187f04cf5 /src | |
parent | 40af97fdec70604a802a520c6473760daa03e8db (diff) | |
download | nginx-1ccba18f00551c75df0365127ad4e146406fafec.tar.gz nginx-1ccba18f00551c75df0365127ad4e146406fafec.zip |
QUIC: using NGX_QUIC_ERR_CRYPTO macro in ALPN checks.
Patch by Jiuzhou Cui.
Diffstat (limited to 'src')
-rw-r--r-- | src/event/quic/ngx_event_quic_ssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event/quic/ngx_event_quic_ssl.c b/src/event/quic/ngx_event_quic_ssl.c index b3059cb4b..58b03cb3a 100644 --- a/src/event/quic/ngx_event_quic_ssl.c +++ b/src/event/quic/ngx_event_quic_ssl.c @@ -190,7 +190,7 @@ ngx_quic_add_handshake_data(ngx_ssl_conn_t *ssl_conn, SSL_get0_alpn_selected(ssl_conn, &alpn_data, &alpn_len); if (alpn_len == 0) { - qc->error = 0x100 + SSL_AD_NO_APPLICATION_PROTOCOL; + qc->error = NGX_QUIC_ERR_CRYPTO(SSL_AD_NO_APPLICATION_PROTOCOL); qc->error_reason = "unsupported protocol in ALPN extension"; ngx_log_error(NGX_LOG_INFO, c->log, 0, |