diff src/http/ngx_http_upstream.c @ 8630:279ad36f2f4b quic

QUIC: renamed c->qs to c->quic.
author Roman Arutyunyan <arut@nginx.com>
date Tue, 10 Nov 2020 19:40:00 +0000
parents 474706351c09
children 13f7085b90d2
line wrap: on
line diff
--- a/src/http/ngx_http_upstream.c
+++ b/src/http/ngx_http_upstream.c
@@ -524,7 +524,7 @@ ngx_http_upstream_init(ngx_http_request_
 #endif
 
 #if (NGX_HTTP_QUIC)
-    if (c->qs) {
+    if (c->quic) {
         ngx_http_upstream_init_request(r);
         return;
     }
@@ -1354,7 +1354,7 @@ ngx_http_upstream_check_broken_connectio
 
 #if (NGX_HTTP_QUIC)
 
-    if (c->qs) {
+    if (c->quic) {
         if (c->write->error) {
             ngx_http_upstream_finalize_request(r, u,
                                                NGX_HTTP_CLIENT_CLOSED_REQUEST);