summaryrefslogtreecommitdiffstats
path: root/docs/en/cowboy/2.4/manual/cowboy_http2/index.html
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2018-06-04 12:59:26 +0200
committerLoïc Hoguin <[email protected]>2018-06-04 12:59:26 +0200
commit2b588340af501825f3ab03f2e76dba0353c98fae (patch)
treead990a44d67f30e9804b606e0282ca9adfa37433 /docs/en/cowboy/2.4/manual/cowboy_http2/index.html
parent791b95225695b3badff7cc4bb4f0f1ed373c74de (diff)
downloadninenines.eu-2b588340af501825f3ab03f2e76dba0353c98fae.tar.gz
ninenines.eu-2b588340af501825f3ab03f2e76dba0353c98fae.tar.bz2
ninenines.eu-2b588340af501825f3ab03f2e76dba0353c98fae.zip
Update documentation for Gun 1.0
Diffstat (limited to 'docs/en/cowboy/2.4/manual/cowboy_http2/index.html')
-rw-r--r--docs/en/cowboy/2.4/manual/cowboy_http2/index.html76
1 files changed, 40 insertions, 36 deletions
diff --git a/docs/en/cowboy/2.4/manual/cowboy_http2/index.html b/docs/en/cowboy/2.4/manual/cowboy_http2/index.html
index 6812c92b..ec1b8d28 100644
--- a/docs/en/cowboy/2.4/manual/cowboy_http2/index.html
+++ b/docs/en/cowboy/2.4/manual/cowboy_http2/index.html
@@ -7,8 +7,6 @@
<meta name="description" content="">
<meta name="author" content="Loïc Hoguin based on a design from (Soft10) Pol Cámara">
- <meta name="generator" content="Hugo 0.37.1" />
-
<title>Nine Nines: cowboy_http2(3)</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic' rel='stylesheet' type='text/css'>
@@ -116,7 +114,7 @@ connection_type (supervisor)
</dt>
<dd>
<p>
-Whether the connection process also acts as a supervisor.
+ Whether the connection process also acts as a supervisor.
</p>
</dd>
<dt class="hdlist1">
@@ -124,9 +122,9 @@ enable_connect_protocol (false)
</dt>
<dd>
<p>
-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.
+ 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.
</p>
</dd>
<dt class="hdlist1">
@@ -134,7 +132,7 @@ env (#{})
</dt>
<dd>
<p>
-Middleware environment.
+ Middleware environment.
</p>
</dd>
<dt class="hdlist1">
@@ -142,7 +140,7 @@ inactivity_timeout (300000)
</dt>
<dd>
<p>
-Time in ms with nothing received at all before Cowboy closes the connection.
+ Time in ms with nothing received at all before Cowboy closes the connection.
</p>
</dd>
<dt class="hdlist1">
@@ -150,21 +148,24 @@ initial_connection_window_size (65535)
</dt>
<dd>
<p>
-Initial window size for the connection. This is the total amount
-of data (from request bodies for example) that may be buffered
-by the connection across all streams before the user code
-explicitly requests it.
+ Initial window size for the connection. This is the total amount
+ of data (from request bodies for example) that may be buffered
+ by the connection across all streams before the user code
+ explicitly requests it.
</p>
-<div class="paragraph"><p>Note that this value cannot be lower than the default.</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><code>Note that this value cannot be lower than the default.</code></pre>
+</div></div>
</dd>
<dt class="hdlist1">
initial_stream_window_size (65535)
</dt>
<dd>
<p>
-Initial window size for new streams. This is the total amount
-of data (from request bodies for example) that may be buffered
-by a single stream before the user code explicitly requests it.
+ Initial window size for new streams. This is the total amount
+ of data (from request bodies for example) that may be buffered
+ by a single stream before the user code explicitly requests it.
</p>
</dd>
<dt class="hdlist1">
@@ -172,7 +173,7 @@ max_concurrent_streams (infinity)
</dt>
<dd>
<p>
-Maximum number of concurrent streams allowed on the connection.
+ Maximum number of concurrent streams allowed on the connection.
</p>
</dd>
<dt class="hdlist1">
@@ -180,9 +181,9 @@ max_decode_table_size (4096)
</dt>
<dd>
<p>
-Maximum header table size used by the decoder. This is the value advertised
-to the client. The client can then choose a header table size equal or lower
-to the advertised value.
+ Maximum header table size used by the decoder. This is the value advertised
+ to the client. The client can then choose a header table size equal or lower
+ to the advertised value.
</p>
</dd>
<dt class="hdlist1">
@@ -190,9 +191,9 @@ max_encode_table_size (4096)
</dt>
<dd>
<p>
-Maximum header table size used by the encoder. The server will compare this
-value to what the client advertises and choose the smallest one as the
-encoder&#8217;s header table size.
+ Maximum header table size used by the encoder. The server will compare this
+ value to what the client advertises and choose the smallest one as the
+ encoder&#8217;s header table size.
</p>
</dd>
<dt class="hdlist1">
@@ -200,9 +201,9 @@ max_frame_size_received (16384)
</dt>
<dd>
<p>
-Maximum size of the frames received by the server. This value is
-advertised to the remote endpoint which can then decide to use
-any value lower or equal for its frame sizes.
+ Maximum size of the frames received by the server. This value is
+ advertised to the remote endpoint which can then decide to use
+ any value lower or equal for its frame sizes.
</p>
</dd>
<dt class="hdlist1">
@@ -210,19 +211,22 @@ max_frame_size_sent (infinity)
</dt>
<dd>
<p>
-Maximum size of the frames sent by the server. This option allows
-setting an upper limit to the frame sizes instead of blindly
-following the client&#8217;s advertised maximum.
+ Maximum size of the frames sent by the server. This option allows
+ setting an upper limit to the frame sizes instead of blindly
+ following the client&#8217;s advertised maximum.
</p>
-<div class="paragraph"><p>Note that actual frame sizes may be lower than the limit when
-there is not enough space left in the flow control window.</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><code>Note that actual frame sizes may be lower than the limit when
+there is not enough space left in the flow control window.</code></pre>
+</div></div>
</dd>
<dt class="hdlist1">
middlewares ([cowboy_router, cowboy_handler])
</dt>
<dd>
<p>
-Middlewares to run for every request.
+ Middlewares to run for every request.
</p>
</dd>
<dt class="hdlist1">
@@ -230,7 +234,7 @@ preface_timeout (5000)
</dt>
<dd>
<p>
-Time in ms Cowboy is willing to wait for the connection preface.
+ Time in ms Cowboy is willing to wait for the connection preface.
</p>
</dd>
<dt class="hdlist1">
@@ -238,7 +242,7 @@ settings_timeout (5000)
</dt>
<dd>
<p>
-Time in ms Cowboy is willing to wait for a SETTINGS ack.
+ Time in ms Cowboy is willing to wait for a SETTINGS ack.
</p>
</dd>
<dt class="hdlist1">
@@ -246,7 +250,7 @@ shutdown_timeout (5000)
</dt>
<dd>
<p>
-Time in ms Cowboy will wait for child processes to shut down before killing them.
+ Time in ms Cowboy will wait for child processes to shut down before killing them.
</p>
</dd>
<dt class="hdlist1">
@@ -254,7 +258,7 @@ stream_handlers ([cowboy_stream_h])
</dt>
<dd>
<p>
-Ordered list of stream handlers that will handle all stream events.
+ Ordered list of stream handlers that will handle all stream events.
</p>
</dd>
</dl></div>