From 0bf1e5d3606cc21c3e8153623d49a9e2a76cecdd Mon Sep 17 00:00:00 2001 From: Santusht kotai <115890693+santusht06@users.noreply.github.com> Date: Tue, 25 Aug 2026 17:57:36 +0530 Subject: [PATCH] doc: fix default value for maxHeadersCount in http.md The documentation previously stated that the default for `server.maxHeadersCount` and `request.maxHeadersCount` was 2000. However, `MAX_HEADER_PAIRS` in `lib/_http_common.js` limits parser pairs (header name and value strings) to 2000, which corresponds to an effective default limit of 1000 headers. Fixes: https://github.com/nodejs/node/issues/65470 Signed-off-by: Santusht kotai <115890693+santusht06@users.noreply.github.com>