Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/js/internal/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ const kSignal = Symbol("signal");
const kMaxHeaderSize = Symbol("maxHeaderSize");
const abortedSymbol = Symbol("aborted");
const kClearTimeout = Symbol("kClearTimeout");
// Set when a ClientRequest is driven over a socket produced by a custom agent
// (e.g. the `tunnel` package) instead of the native fetch fast path.
const kCustomSocketPath = Symbol("customSocketPath");

const headerStateSymbol = Symbol("headerState");
// used for pretending to emit events in the right order
Expand Down Expand Up @@ -514,6 +517,7 @@ export {
kBodyChunks,
kClearTimeout,
kCloseCallback,
kCustomSocketPath,
kDeferredTimeouts,
kDeprecatedReplySymbol,
kEmitState,
Expand Down
Loading
Loading