aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/manual/cowboy_http2.asciidoc
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2024-01-23 15:29:41 +0100
committerLoïc Hoguin <[email protected]>2024-01-23 15:29:41 +0100
commit8f9051519e56e0c49ec9c3d60ca9389104b1b18c (patch)
treee69d543b9b2aa1b81b2280f3fc59d2e4bac83dd1 /doc/src/manual/cowboy_http2.asciidoc
parentf060e6c4ffedca65111b8016d4a976e15bfdb2b1 (diff)
downloadcowboy-8f9051519e56e0c49ec9c3d60ca9389104b1b18c.tar.gz
cowboy-8f9051519e56e0c49ec9c3d60ca9389104b1b18c.tar.bz2
cowboy-8f9051519e56e0c49ec9c3d60ca9389104b1b18c.zip
Cowboy 2.11
Diffstat (limited to 'doc/src/manual/cowboy_http2.asciidoc')
-rw-r--r--doc/src/manual/cowboy_http2.asciidoc8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/src/manual/cowboy_http2.asciidoc b/doc/src/manual/cowboy_http2.asciidoc
index a47d24a..8eb3cf2 100644
--- a/doc/src/manual/cowboy_http2.asciidoc
+++ b/doc/src/manual/cowboy_http2.asciidoc
@@ -94,7 +94,10 @@ enable_connect_protocol (false)::
Whether to enable the extended CONNECT method to allow
protocols like Websocket to be used over an HTTP/2 stream.
-This option is experimental and disabled by default.
++
+For backward compatibility reasons, this option is disabled
+by default. It must be enabled to use Websocket over HTTP/2.
+It will be enabled by default in a future release.
goaway_initial_timeout (1000)::
@@ -277,6 +280,7 @@ too many `WINDOW_UPDATE` frames.
== Changelog
+* *2.11*: Websocket over HTTP/2 is now considered stable.
* *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.
@@ -307,7 +311,7 @@ too many `WINDOW_UPDATE` frames.
`max_frame_size_received`, `max_frame_size_sent`
and `settings_timeout` to configure HTTP/2 SETTINGS
and related behavior.
-* *2.4*: Add the experimental option `enable_connect_protocol`.
+* *2.4*: Add the option `enable_connect_protocol`.
* *2.0*: Protocol introduced.
== See also