]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
DEV: h2: fix flags for the continuation frame
authorWilly Tarreau <w@1wt.eu>
Tue, 18 Feb 2025 13:16:28 +0000 (14:16 +0100)
committerWilly Tarreau <w@1wt.eu>
Tue, 18 Feb 2025 13:17:17 +0000 (14:17 +0100)
It's flag 2 (end of headers) that's defined there, not 3 (padded).

dev/h2/h2-tracer.lua

index 0d06a4b4574a8fd7b9369c61261c1ac6fe917613..71643bb623532ac8c01c71ed117cbf207c9d4c22 100644 (file)
@@ -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()