diff options
| author | Roman Arutyunyan <arut@nginx.com> | 2020-03-24 16:38:03 +0300 |
|---|---|---|
| committer | Roman Arutyunyan <arut@nginx.com> | 2020-03-24 16:38:03 +0300 |
| commit | f75e4e3fef6e270555afefbb15b4741c694596f3 (patch) | |
| tree | 6eef6b006bd951ebec928a6febdd646fb36d267e /src/http/ngx_http_request.c | |
| parent | 061a42d9664aa7bdcc6d3af1b79486a9d7a82c89 (diff) | |
| download | nginx-f75e4e3fef6e270555afefbb15b4741c694596f3.tar.gz nginx-f75e4e3fef6e270555afefbb15b4741c694596f3.tar.bz2 | |
Removed ngx_quic_stream_node_t.
Now ngx_quic_stream_t is directly inserted into the tree.
Diffstat (limited to 'src/http/ngx_http_request.c')
| -rw-r--r-- | src/http/ngx_http_request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index c5165f2dc..6f168c8bd 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -414,7 +414,7 @@ ngx_http_quic_stream_handler(ngx_connection_t *c) pc = c->qs->parent; h3c = pc->data; - if (c->qs->unidirectional) { + if (c->qs->id & NGX_QUIC_STREAM_UNIDIRECTIONAL) { ngx_http_v3_handle_client_uni_stream(c); return; } |
