summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/api/http2.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/api/http2.md b/doc/api/http2.md
index 03d3ff21a8..d2837019bb 100644
--- a/doc/api/http2.md
+++ b/doc/api/http2.md
@@ -2356,6 +2356,9 @@ server.on('stream', (stream, headers) => {
<!-- YAML
added: v8.4.0
changes:
+ - version: REPLACEME
+ pr-url: https://github.com/nodejs/node/pull/29833
+ description: The `maxConcurrentStreams` setting is stricter.
- version: v8.9.3
pr-url: https://github.com/nodejs/node/pull/16676
description: The `maxHeaderListSize` setting is now strictly enforced.
@@ -2381,9 +2384,10 @@ properties.
is 2<sup>24</sup>-1. **Default:** `16,384 bytes`.
* `maxConcurrentStreams` {number} Specifies the maximum number of concurrent
streams permitted on an `Http2Session`. There is no default value which
- implies, at least theoretically, 2<sup>31</sup>-1 streams may be open
+ implies, at least theoretically, 2<sup>32</sup>-1 streams may be open
concurrently at any given time in an `Http2Session`. The minimum value
- is 0. The maximum allowed value is 2<sup>31</sup>-1.
+ is 0. The maximum allowed value is 2<sup>32</sup>-1. **Default:**
+ `4294967295`.
* `maxHeaderListSize` {number} Specifies the maximum size (uncompressed octets)
of header list that will be accepted. The minimum allowed value is 0. The
maximum allowed value is 2<sup>32</sup>-1. **Default:** `65535`.