From: Willy Tarreau Date: Tue, 18 Feb 2025 13:16:28 +0000 (+0100) Subject: DEV: h2: fix flags for the continuation frame X-Git-Tag: v3.2-dev6~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=af5c07eee9921e1ff904d91673550d7907cded45;p=thirdparty%2Fhaproxy.git DEV: h2: fix flags for the continuation frame It's flag 2 (end of headers) that's defined there, not 3 (padded). --- diff --git a/dev/h2/h2-tracer.lua b/dev/h2/h2-tracer.lua index 0d06a4b45..71643bb62 100644 --- a/dev/h2/h2-tracer.lua +++ b/dev/h2/h2-tracer.lua @@ -49,7 +49,7 @@ h2ff = { [6] = { [0] = "ACK" }, -- ping [7] = { }, -- goaway [8] = { }, -- window_update - [9] = { [3] = "PADDED" }, -- continuation + [9] = { [2] = "EH" }, -- continuation } function Dec:new()