From ce09099c69c6cc494009bdeda130b6843338392d Mon Sep 17 00:00:00 2001 From: Patrik Juvonen <22572159+patrikjuvonen@users.noreply.github.com> Date: Wed, 23 Oct 2024 16:50:34 +0300 Subject: [PATCH] Update nginx.patch from quiche to fix build error From cloudflare/quiche commit https://github.com/cloudflare/quiche/commit/2514d58f292f97b24447ac20745f515c3213f6c3 --- nginx.patch | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/nginx.patch b/nginx.patch index e355bac..1691f72 100644 --- a/nginx.patch +++ b/nginx.patch @@ -1,7 +1,16 @@ diff --git a/src/http/v3/ngx_http_v3.c b/src/http/v3/ngx_http_v3.c -index 77f04f1..de3d044 100644 +index 77f04f1..b438e9e 100644 --- a/src/http/v3/ngx_http_v3.c +++ b/src/http/v3/ngx_http_v3.c +@@ -300,7 +300,7 @@ ngx_http_v3_process_headers(ngx_connection_t *c, quiche_h3_event *ev, + return; + } + +- stream->in_closed = !quiche_h3_event_headers_has_body(ev); ++ stream->in_closed = !quiche_h3_event_headers_has_more_frames(ev); + + ngx_http_v3_run_request(stream->request); + } @@ -462,9 +462,6 @@ ngx_http_v3_handler(ngx_connection_t *c) case QUICHE_H3_EVENT_PRIORITY_UPDATE: break;