changeset 8853:7603284f7af5 quic

Removed NGX_OPENSSL_QUIC macro, NGX_QUIC is enough.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 14 Sep 2021 12:09:13 +0300
parents 8fc9c7f2c533
children 7416d3b2fac5
files auto/lib/openssl/conf src/core/ngx_core.h src/http/ngx_http.c
diffstat 3 files changed, 3 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/auto/lib/openssl/conf
+++ b/auto/lib/openssl/conf
@@ -145,7 +145,7 @@ fi
 if [ $USE_OPENSSL_QUIC = YES ]; then
 
     ngx_feature="OpenSSL QUIC support"
-    ngx_feature_name="NGX_OPENSSL_QUIC"
+    ngx_feature_name="NGX_QUIC"
     ngx_feature_run=no
     ngx_feature_incs="#include <openssl/ssl.h>"
     ngx_feature_path=
@@ -165,8 +165,6 @@ with nginx by using --with-openssl=<path
 END
         exit 1
     fi
-
-    have=NGX_QUIC . auto/have
 fi
 
 
--- a/src/core/ngx_core.h
+++ b/src/core/ngx_core.h
@@ -83,7 +83,7 @@ typedef void (*ngx_connection_handler_pt
 #include <ngx_resolver.h>
 #if (NGX_OPENSSL)
 #include <ngx_event_openssl.h>
-#if (NGX_OPENSSL_QUIC)
+#if (NGX_QUIC)
 #include <ngx_event_quic.h>
 #endif
 #endif
--- a/src/http/ngx_http.c
+++ b/src/http/ngx_http.c
@@ -1372,7 +1372,7 @@ ngx_http_add_address(ngx_conf_t *cf, ngx
 
 #endif
 
-#if (NGX_HTTP_QUIC && !defined NGX_OPENSSL_QUIC)
+#if (NGX_HTTP_QUIC && !defined NGX_QUIC)
 
     if (lsopt->quic) {
         ngx_conf_log_error(NGX_LOG_WARN, cf, 0,