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