Skip to content

Commit a4d1801

Browse files
arynhaduh95
authored andcommitted
doc: fix default limit of maxHeadersCount
The documented limit of 2000 refers to header pairs (counting both keys and values), which gives an effective limit of 1000 headers. This applies to both client and server; they have the same mechanism. Signed-off-by: Aryn H <arynh@protonmail.com> PR-URL: #65472 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com>
1 parent 2f74486 commit a4d1801

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

doc/api/http.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1127,7 +1127,7 @@ const hasContentType = request.hasHeader('content-type');
11271127

11281128
### `request.maxHeadersCount`
11291129

1130-
* Type: {number} **Default:** `2000`
1130+
* Type: {number} **Default:** `1000`
11311131

11321132
Limits maximum response headers count. If set to 0, no limit will be applied.
11331133

@@ -1914,7 +1914,7 @@ added: v5.7.0
19141914
added: v0.7.0
19151915
-->
19161916

1917-
* Type: {number} **Default:** `2000`
1917+
* Type: {number} **Default:** `1000`
19181918

19191919
Limits maximum incoming headers count. If set to 0, no limit will be applied.
19201920

doc/api/https.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ This method is identical to [`server.listen()`][] from [`net.Server`][].
199199

200200
### `server.maxHeadersCount`
201201

202-
* Type: {number} **Default:** `2000`
202+
* Type: {number} **Default:** `1000`
203203

204204
See [`server.maxHeadersCount`][] in the `node:http` module.
205205

0 commit comments

Comments
 (0)