comparison src/http/ngx_http_request.c @ 8922:be08b858086a quic

HTTP/3: http3_hq directive and NGX_HTTP_V3_HQ macro. Listen quic parameter is no longer supported.
author Roman Arutyunyan <arut@nginx.com>
date Sat, 04 Dec 2021 10:52:55 +0300
parents 33226ac61076
children e06283038ec8
comparison
equal deleted inserted replaced
8921:33226ac61076 8922:be08b858086a
325 rev->handler = ngx_http_v2_init; 325 rev->handler = ngx_http_v2_init;
326 } 326 }
327 #endif 327 #endif
328 328
329 #if (NGX_HTTP_V3) 329 #if (NGX_HTTP_V3)
330 if (hc->addr_conf->quic) { 330 if (hc->addr_conf->http3) {
331 ngx_http_v3_init(c); 331 ngx_http_v3_init(c);
332 return; 332 return;
333 } 333 }
334 #endif 334 #endif
335 335