diff options
author | Roman Arutyunyan <arut@nginx.com> | 2021-12-06 13:02:36 +0300 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2021-12-06 13:02:36 +0300 |
commit | 731915a0c5e90b79d3cca1a4b0a3c33e1f77631c (patch) | |
tree | 5282f6ce9982b7dc159b98a04baeedd03a7cb4fc /src/http/ngx_http_upstream.c | |
parent | ea55dbccb248629628baad2b85d7634c82b613ec (diff) | |
download | nginx-731915a0c5e90b79d3cca1a4b0a3c33e1f77631c.tar.gz nginx-731915a0c5e90b79d3cca1a4b0a3c33e1f77631c.zip |
HTTP/3: merged ngx_http_quic_module into ngx_http_v3_module.
Diffstat (limited to 'src/http/ngx_http_upstream.c')
-rw-r--r-- | src/http/ngx_http_upstream.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/ngx_http_upstream.c b/src/http/ngx_http_upstream.c index d27a53ea4..670fc022f 100644 --- a/src/http/ngx_http_upstream.c +++ b/src/http/ngx_http_upstream.c @@ -525,7 +525,7 @@ ngx_http_upstream_init(ngx_http_request_t *r) } #endif -#if (NGX_HTTP_QUIC) +#if (NGX_HTTP_V3) if (c->quic) { ngx_http_upstream_init_request(r); return; @@ -1365,7 +1365,7 @@ ngx_http_upstream_check_broken_connection(ngx_http_request_t *r, } #endif -#if (NGX_HTTP_QUIC) +#if (NGX_HTTP_V3) if (c->quic) { if (c->write->error) { |