From 14ae4f897f3c92fd8f2d4ac06ce7fb3015071d2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Sun, 21 Apr 2024 03:01:23 +0100 Subject: fix(ext/node): define http.maxHeaderSize (#23479) Closes https://github.com/denoland/deno/issues/23432 --- ext/node/polyfills/http.ts | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ext') diff --git a/ext/node/polyfills/http.ts b/ext/node/polyfills/http.ts index 67981e8de..ceaf7aeb8 100644 --- a/ext/node/polyfills/http.ts +++ b/ext/node/polyfills/http.ts @@ -1820,6 +1820,8 @@ export function get(...args: any[]) { return req; } +export const maxHeaderSize = 16_384; + export { Agent, ClientRequest, @@ -1848,4 +1850,5 @@ export default { get, validateHeaderName, validateHeaderValue, + maxHeaderSize, }; -- cgit v1.2.3