summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/http.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/http.ts')
-rw-r--r--ext/node/polyfills/http.ts3
1 files changed, 3 insertions, 0 deletions
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,
};