diff src/http/ngx_http_core_module.c @ 9104:69bae2437d74 quic

HTTP/3: removed "http3" parameter of "listen" directive. The parameter has been deprecated since c851a2ed5ce8.
author Roman Arutyunyan <arut@nginx.com>
date Thu, 11 May 2023 13:22:10 +0400
parents 0af598651e33
children 08ef02ad5c54
line wrap: on
line diff
--- a/src/http/ngx_http_core_module.c
+++ b/src/http/ngx_http_core_module.c
@@ -4186,23 +4186,6 @@ ngx_http_core_listen(ngx_conf_t *cf, ngx
 #endif
         }
 
-        if (ngx_strcmp(value[n].data, "http3") == 0) {
-#if (NGX_HTTP_V3)
-            ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
-                               "the \"http3\" parameter is deprecated, "
-                               "use \"quic\" parameter instead");
-            lsopt.quic = 1;
-            lsopt.http3 = 1;
-            lsopt.type = SOCK_DGRAM;
-            continue;
-#else
-            ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
-                               "the \"http3\" parameter requires "
-                               "ngx_http_v3_module");
-            return NGX_CONF_ERROR;
-#endif
-        }
-
         if (ngx_strcmp(value[n].data, "quic") == 0) {
 #if (NGX_HTTP_V3)
             lsopt.quic = 1;