summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilly Tarreau <w@1wt.eu>2017-08-17 07:10:49 +0200
committerWilly Tarreau <w@1wt.eu>2017-08-18 13:42:05 +0200
commitc1dbc7685e22c3d0051be572e4e208080abca447 (patch)
treecff6c0aa1dfd8f9545c67e8f1b8a490b8a179080
parente16ffc01e9042897025f7fd3b08222935659ca5c (diff)
downloadhaproxy-c1dbc7685e22c3d0051be572e4e208080abca447.tar.gz
MINOR: h2: frame type CONTINUATION was missing
It was the only one missing from the list of frames, it was apparently forgotten when reading the spec.
-rw-r--r--include/types/h2common.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/types/h2common.h b/include/types/h2common.h
index ca746b920..36718aae9 100644
--- a/include/types/h2common.h
+++ b/include/types/h2common.h
@@ -37,6 +37,7 @@ enum h2_ft {
H2_FT_PING = 0x06, // RFC7540 #6.7
H2_FT_GOAWAY = 0x07, // RFC7540 #6.8
H2_FT_WINDOW_UPDATE = 0x08, // RFC7540 #6.9
+ H2_FT_CONTINUATION = 0x09, // RFC7540 #6.10
H2_FT_ENTRIES /* must be last */
} __attribute__((packed));