comparison 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
comparison
equal deleted inserted replaced
8629:feec2cc762f6 8630:279ad36f2f4b
522 return; 522 return;
523 } 523 }
524 #endif 524 #endif
525 525
526 #if (NGX_HTTP_QUIC) 526 #if (NGX_HTTP_QUIC)
527 if (c->qs) { 527 if (c->quic) {
528 ngx_http_upstream_init_request(r); 528 ngx_http_upstream_init_request(r);
529 return; 529 return;
530 } 530 }
531 #endif 531 #endif
532 532
1352 } 1352 }
1353 #endif 1353 #endif
1354 1354
1355 #if (NGX_HTTP_QUIC) 1355 #if (NGX_HTTP_QUIC)
1356 1356
1357 if (c->qs) { 1357 if (c->quic) {
1358 if (c->write->error) { 1358 if (c->write->error) {
1359 ngx_http_upstream_finalize_request(r, u, 1359 ngx_http_upstream_finalize_request(r, u,
1360 NGX_HTTP_CLIENT_CLOSED_REQUEST); 1360 NGX_HTTP_CLIENT_CLOSED_REQUEST);
1361 } 1361 }
1362 1362