comparison src/http/ngx_http_upstream.c @ 8921:33226ac61076 quic

HTTP/3: merged ngx_http_quic_module into ngx_http_v3_module.
author Roman Arutyunyan <arut@nginx.com>
date Mon, 06 Dec 2021 13:02:36 +0300
parents 61d0fa67b55e
children 5c86189a1c1b
comparison
equal deleted inserted replaced
8920:9680f0badc95 8921:33226ac61076
523 ngx_http_upstream_init_request(r); 523 ngx_http_upstream_init_request(r);
524 return; 524 return;
525 } 525 }
526 #endif 526 #endif
527 527
528 #if (NGX_HTTP_QUIC) 528 #if (NGX_HTTP_V3)
529 if (c->quic) { 529 if (c->quic) {
530 ngx_http_upstream_init_request(r); 530 ngx_http_upstream_init_request(r);
531 return; 531 return;
532 } 532 }
533 #endif 533 #endif
1363 if (r->stream) { 1363 if (r->stream) {
1364 return; 1364 return;
1365 } 1365 }
1366 #endif 1366 #endif
1367 1367
1368 #if (NGX_HTTP_QUIC) 1368 #if (NGX_HTTP_V3)
1369 1369
1370 if (c->quic) { 1370 if (c->quic) {
1371 if (c->write->error) { 1371 if (c->write->error) {
1372 ngx_http_upstream_finalize_request(r, u, 1372 ngx_http_upstream_finalize_request(r, u,
1373 NGX_HTTP_CLIENT_CLOSED_REQUEST); 1373 NGX_HTTP_CLIENT_CLOSED_REQUEST);