aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/manual/cowboy_http2.asciidoc
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2024-01-23 14:48:15 +0100
committerLoïc Hoguin <[email protected]>2024-01-23 14:48:15 +0100
commitf060e6c4ffedca65111b8016d4a976e15bfdb2b1 (patch)
treeca6b1c9d530dcdced6de61f6fc4bb60a37be31f5 /doc/src/manual/cowboy_http2.asciidoc
parent08c2be058a1c376fcb80465473b53085c14f88f5 (diff)
downloadcowboy-f060e6c4ffedca65111b8016d4a976e15bfdb2b1.tar.gz
cowboy-f060e6c4ffedca65111b8016d4a976e15bfdb2b1.tar.bz2
cowboy-f060e6c4ffedca65111b8016d4a976e15bfdb2b1.zip
Document reset_idle_timeout_on_send option
Diffstat (limited to 'doc/src/manual/cowboy_http2.asciidoc')
-rw-r--r--doc/src/manual/cowboy_http2.asciidoc7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/src/manual/cowboy_http2.asciidoc b/doc/src/manual/cowboy_http2.asciidoc
index 6af4fc0..a47d24a 100644
--- a/doc/src/manual/cowboy_http2.asciidoc
+++ b/doc/src/manual/cowboy_http2.asciidoc
@@ -44,6 +44,7 @@ opts() :: #{
max_stream_window_size => 0..16#7fffffff,
preface_timeout => timeout(),
proxy_header => boolean(),
+ reset_idle_timeout_on_send => boolean(),
sendfile => boolean(),
settings_timeout => timeout(),
stream_handlers => [module()],
@@ -235,6 +236,11 @@ Whether incoming connections have a PROXY protocol header. The
proxy information will be passed forward via the `proxy_header`
key of the Req object.
+reset_idle_timeout_on_send (false)::
+
+Whether the `idle_timeout` gets reset when sending data
+to the socket.
+
sendfile (true)::
Whether the sendfile syscall may be used. It can be useful to disable
@@ -271,6 +277,7 @@ too many `WINDOW_UPDATE` frames.
== Changelog
+* *2.11*: The `reset_idle_timeout_on_send` option was added.
* *2.11*: Add the option `max_cancel_stream_rate` to protect
against another flood scenario.
* *2.9*: The `goaway_initial_timeout` and `goaway_complete_timeout`