From 90d92196211ca3c489da200619585b09a49d1f76 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Fri, 6 Jun 2025 13:46:34 -0700 Subject: [PATCH] http: mark req/streams as no lookup sessions Type: fix Change-Id: If5572fa4a9ac1a5d61867228cbd2a7e6ef3546d3 Signed-off-by: Florin Coras --- src/plugins/http/http2/http2.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/http/http2/http2.c b/src/plugins/http/http2/http2.c index 8d470835547..e8d6dff88dc 100644 --- a/src/plugins/http/http2/http2.c +++ b/src/plugins/http/http2/http2.c @@ -219,6 +219,7 @@ http2_conn_alloc_req (http_conn_t *hc, u32 stream_id) req->base.hr_req_handle = hr_handle.as_u32; req->base.hr_hc_index = hc->hc_hc_index; req->base.c_thread_index = hc->c_thread_index; + req->base.c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP; req->stream_id = stream_id; req->stream_state = HTTP2_STREAM_STATE_IDLE; req->sched_list.next = CLIB_LLIST_INVALID_INDEX; -- 2.16.6