diff options
| -rw-r--r-- | src/bun.js/http.exports.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/bun.js/http.exports.js b/src/bun.js/http.exports.js index 137906a5d..4ae36c52d 100644 --- a/src/bun.js/http.exports.js +++ b/src/bun.js/http.exports.js @@ -399,6 +399,10 @@ export class IncomingMessage extends Readable { callback(); } + setNoDelay(val) { + return this; + } + #closeBodyStream() { debug("closeBodyStream()"); var bodyStream = this.#bodyStream; @@ -909,7 +913,6 @@ export class ClientRequest extends OutgoingMessage { #upgradeOrConnect = false; #parser = null; #maxHeadersCount = null; - #reusedSocket = false; #host; #protocol; #method; @@ -1180,7 +1183,6 @@ export class ClientRequest extends OutgoingMessage { this.#upgradeOrConnect = false; this.#parser = null; this.#maxHeadersCount = null; - this.#reusedSocket = false; this.#host = host; this.#protocol = protocol; |
