diff options
author | Roman Arutyunyan <arut@nginx.com> | 2021-12-04 10:52:55 +0300 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2021-12-04 10:52:55 +0300 |
commit | d84c1f7885cc898f626057c314cdae4047c5d513 (patch) | |
tree | c351baac8bf82ebabbc2fae3a3da4320f657446e /src/http/ngx_http_request.c | |
parent | 731915a0c5e90b79d3cca1a4b0a3c33e1f77631c (diff) | |
download | nginx-d84c1f7885cc898f626057c314cdae4047c5d513.tar.gz nginx-d84c1f7885cc898f626057c314cdae4047c5d513.zip |
HTTP/3: http3_hq directive and NGX_HTTP_V3_HQ macro.
Listen quic parameter is no longer supported.
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index 0acedb6e9..e8907c100 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -327,7 +327,7 @@ ngx_http_init_connection(ngx_connection_t *c) #endif #if (NGX_HTTP_V3) - if (hc->addr_conf->quic) { + if (hc->addr_conf->http3) { ngx_http_v3_init(c); return; } |