DEV: h2: fix flags for the continuation frame

It's flag 2 (end of headers) that's defined there, not 3 (padded).
This commit is contained in:
Willy Tarreau 2025-02-18 14:16:28 +01:00
parent 2715dbe9d0
commit af5c07eee9

View 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()