changeset 8964:ad67fcc30567 quic

HTTP/3: removed useless warning regarding OpenSSL library. After 0e6528551f26, it became impossible to run into this path.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 13 Jan 2022 15:57:15 +0300
parents 5acd0d89d8c2
children c31d95fdaf65
files src/http/ngx_http.c
diffstat 1 files changed, 0 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/src/http/ngx_http.c
+++ b/src/http/ngx_http.c
@@ -1362,17 +1362,6 @@ ngx_http_add_address(ngx_conf_t *cf, ngx
 
 #endif
 
-#if (NGX_HTTP_V3 && !defined NGX_QUIC)
-
-    if (lsopt->http3) {
-        ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
-                           "nginx was built with OpenSSL that lacks QUIC "
-                           "support, HTTP/3 is not enabled for %V",
-                           &lsopt->addr_text);
-    }
-
-#endif
-
     addr = ngx_array_push(&port->addrs);
     if (addr == NULL) {
         return NGX_ERROR;