aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2024-03-14 13:25:50 +0100
committerLoïc Hoguin <[email protected]>2024-03-14 13:25:50 +0100
commitf0c19d6674d792defc181333e20268b785ce4321 (patch)
treecfb736e1ba72bc07b27f460e36c32d548243feaf /doc
parentffde92536bc09c4c93a6d93bb24cefef3d9d9095 (diff)
downloadgun-f0c19d6674d792defc181333e20268b785ce4321.tar.gz
gun-f0c19d6674d792defc181333e20268b785ce4321.tar.bz2
gun-f0c19d6674d792defc181333e20268b785ce4321.zip
Update Cowlib to 2.13.0
Diffstat (limited to 'doc')
-rw-r--r--doc/src/manual/gun.asciidoc4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/src/manual/gun.asciidoc b/doc/src/manual/gun.asciidoc
index d511fdc..60f217a 100644
--- a/doc/src/manual/gun.asciidoc
+++ b/doc/src/manual/gun.asciidoc
@@ -221,12 +221,13 @@ http2_opts() :: #{
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_stream_buffer_size => non_neg_integer(),
max_stream_window_size => 0..16#7fffffff,
preface_timeout => timeout(),
settings_timeout => timeout(),
+ stream_window_data_threshold => 0..16#7fffffff,
stream_window_margin_size => 0..16#7fffffff,
stream_window_update_threshold => 0..16#7fffffff
}
@@ -597,6 +598,7 @@ By default no user option is defined.
== Changelog
+* *2.1*: The HTTP/2 option list was updated with new options.
* *2.0*: The `default_protocol` and `user_opts` Websocket
options were added.
* *2.0*: The `stream_ref()` type was added.