aboutsummaryrefslogtreecommitdiffstats
path: root/src/cowboy_http2.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2024-03-14 12:36:54 +0100
committerLoïc Hoguin <[email protected]>2024-03-14 12:56:33 +0100
commitcf71c742d6e04b625be1f32217c9ed11a1bd32b6 (patch)
treeb1dc5628e2deb7ec121c03ee7eb765713fb60e6b /src/cowboy_http2.erl
parent81f3a21474155f68fbf494b7026b9678027d303e (diff)
downloadcowboy-cf71c742d6e04b625be1f32217c9ed11a1bd32b6.tar.gz
cowboy-cf71c742d6e04b625be1f32217c9ed11a1bd32b6.tar.bz2
cowboy-cf71c742d6e04b625be1f32217c9ed11a1bd32b6.zip
Add max_fragmented_header_block_size HTTP/2 option
Diffstat (limited to 'src/cowboy_http2.erl')
-rw-r--r--src/cowboy_http2.erl1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cowboy_http2.erl b/src/cowboy_http2.erl
index 91e9c51..5b1f1e1 100644
--- a/src/cowboy_http2.erl
+++ b/src/cowboy_http2.erl
@@ -44,6 +44,7 @@
max_connection_window_size => 0..16#7fffffff,
max_decode_table_size => non_neg_integer(),
max_encode_table_size => non_neg_integer(),
+ max_fragmented_header_block_size => 16384..16#7fffffff,
max_frame_size_received => 16384..16777215,
max_frame_size_sent => 16384..16777215 | infinity,
max_received_frame_rate => {pos_integer(), timeout()},