From b7bd1b25aa5b4bbdc8213d3220c03d4121f80521 Mon Sep 17 00:00:00 2001 From: Simone Bordet Date: Mon, 25 Sep 2017 11:49:00 +0200 Subject: [PATCH] Updated HTTP/2 documentation. Fixed flow control windows default values. --- .../asciidoc/administration/http2/configuring-http2.adoc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/jetty-documentation/src/main/asciidoc/administration/http2/configuring-http2.adoc b/jetty-documentation/src/main/asciidoc/administration/http2/configuring-http2.adoc index 2a6cc064ffd..facd202d484 100644 --- a/jetty-documentation/src/main/asciidoc/administration/http2/configuring-http2.adoc +++ b/jetty-documentation/src/main/asciidoc/administration/http2/configuring-http2.adoc @@ -26,7 +26,7 @@ The modules and XML files involved can be seen with the following commands: .... $ java -jar $JETTY_HOME/start.jar --list-modules ... - 1) protonego-boot + 1) alpn-impl ... 2) http ${jetty.base}/start.d/http.ini 2) ssl ${jetty.base}/start.d/ssl.ini @@ -65,5 +65,6 @@ Currently there are very few HTTP/2 configuration properties and the default val |======================================================================= |Property |Description |jetty.http2.maxConcurrentStreams |The maximum number of concurrently open streams allowed on a single HTTP/2 connection (default 128). Larger values increase parallelism but cost a memory commitment. -|jetty.http2.initialStreamRecvWindow |The initial receive flow control window size for a new stream (default 65535). Larger values may allow greater throughput but also risk head of line blocking if TCP/IP flow control is triggered. +|jetty.http2.initialSessionRecvWindow |The initial receive flow control window size for a new session (default 1048576). Larger values may allow greater throughput but also risk head of line blocking if TCP/IP flow control is triggered. +|jetty.http2.initialStreamRecvWindow |The initial receive flow control window size for a new stream (default 524288). Larger values may allow greater throughput but also risk head of line blocking if TCP/IP flow control is triggered. |=======================================================================