summaryrefslogtreecommitdiff
path: root/ext/net/lib.deno_net.d.ts
diff options
context:
space:
mode:
authorLuca Casonato <hello@lcas.dev>2022-02-16 17:32:29 +0100
committerGitHub <noreply@github.com>2022-02-16 17:32:29 +0100
commit02c95d367e94f55f525646c2759558f52a493c69 (patch)
tree900be0a3bdf8b0df767afae568606265d20d5a11 /ext/net/lib.deno_net.d.ts
parentbe9c2fe267083a2995043ddf6228946f1244ab57 (diff)
chore: make new TCP conn methods unstable (#13686)
Diffstat (limited to 'ext/net/lib.deno_net.d.ts')
-rw-r--r--ext/net/lib.deno_net.d.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/net/lib.deno_net.d.ts b/ext/net/lib.deno_net.d.ts
index 9ac274e94..048037d02 100644
--- a/ext/net/lib.deno_net.d.ts
+++ b/ext/net/lib.deno_net.d.ts
@@ -50,10 +50,6 @@ declare namespace Deno {
/** Shuts down (`shutdown(2)`) the write side of the connection. Most
* callers should just use `close()`. */
closeWrite(): Promise<void>;
- /** Enable/disable the use of Nagle's algorithm. Defaults to true */
- setNoDelay(nodelay?: boolean): void;
- /** Enable/disable keep-alive functionality */
- setKeepAlive(keepalive?: boolean): void;
readonly readable: ReadableStream<Uint8Array>;
readonly writable: WritableStream<Uint8Array>;