summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/_http_outgoing.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/_http_outgoing.ts')
-rw-r--r--ext/node/polyfills/_http_outgoing.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/node/polyfills/_http_outgoing.ts b/ext/node/polyfills/_http_outgoing.ts
index 3c253f5a6..4da6b73e8 100644
--- a/ext/node/polyfills/_http_outgoing.ts
+++ b/ext/node/polyfills/_http_outgoing.ts
@@ -21,7 +21,7 @@ import {
_checkInvalidHeaderChar as checkInvalidHeaderChar,
_checkIsHttpToken as checkIsHttpToken,
chunkExpression as RE_TE_CHUNKED,
-} from "ext:deno_node/_http_common.ts";
+} from "node:_http_common";
import {
defaultTriggerAsyncIdScope,
symbols,
@@ -54,6 +54,8 @@ let debug = debuglog("http", (fn) => {
const HIGH_WATER_MARK = getDefaultHighWaterMark();
+export const kUniqueHeaders = Symbol("kUniqueHeaders");
+export const kHighWaterMark = Symbol("kHighWaterMark");
const kCorked = Symbol("corked");
const nop = () => {};
@@ -891,6 +893,8 @@ function _onFinish(outmsg: any) {
}
export default {
+ kUniqueHeaders,
+ kHighWaterMark,
validateHeaderName,
validateHeaderValue,
parseUniqueHeadersOption,