mirror of
https://github.com/nginx/nginx.git
synced 2024-11-21 16:28:40 +00:00
Removed NGX_OPENSSL_QUIC macro, NGX_QUIC is enough.
This commit is contained in:
parent
10cafa75a4
commit
bd89c448b7
@ -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> option.
|
||||
END
|
||||
exit 1
|
||||
fi
|
||||
|
||||
have=NGX_QUIC . auto/have
|
||||
fi
|
||||
|
||||
|
||||
|
@ -83,7 +83,7 @@ typedef void (*ngx_connection_handler_pt)(ngx_connection_t *c);
|
||||
#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
|
||||
|
@ -1372,7 +1372,7 @@ ngx_http_add_address(ngx_conf_t *cf, ngx_http_core_srv_conf_t *cscf,
|
||||
|
||||
#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,
|
||||
|
Loading…
Reference in New Issue
Block a user