comparison src/http/ngx_http_request.c @ 8280:b364af7f9f3f quic

Removed ngx_quic_stream_node_t. Now ngx_quic_stream_t is directly inserted into the tree.
author Roman Arutyunyan <arut@nginx.com>
date Tue, 24 Mar 2020 16:38:03 +0300
parents ea264b21bfce
children 5649079a41f4
comparison
equal deleted inserted replaced
8279:5f223cdad40e 8280:b364af7f9f3f
412 ngx_http_v3_connection_t *h3c; 412 ngx_http_v3_connection_t *h3c;
413 413
414 pc = c->qs->parent; 414 pc = c->qs->parent;
415 h3c = pc->data; 415 h3c = pc->data;
416 416
417 if (c->qs->unidirectional) { 417 if (c->qs->id & NGX_QUIC_STREAM_UNIDIRECTIONAL) {
418 ngx_http_v3_handle_client_uni_stream(c); 418 ngx_http_v3_handle_client_uni_stream(c);
419 return; 419 return;
420 } 420 }
421 421
422 hc = ngx_pcalloc(c->pool, sizeof(ngx_http_connection_t)); 422 hc = ngx_pcalloc(c->pool, sizeof(ngx_http_connection_t));