From b70cdcfe5199c07d7d6130bba6c779c60a54993b Mon Sep 17 00:00:00 2001 From: Robert Nagy Date: Mon, 13 Apr 2020 19:56:08 +0200 Subject: [PATCH] fixup: add note regarding TCP rst --- doc/api/net.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/api/net.md b/doc/api/net.md index 6c7869d5154a5a..0375190a5b8d2e 100644 --- a/doc/api/net.md +++ b/doc/api/net.md @@ -730,7 +730,8 @@ added: v0.1.90 * `error` {Object} * Returns: {net.Socket} -Ensures that no more I/O activity happens on this socket. +Ensures that no more I/O activity happens on this socket. This destroys +the stream but does not explicitly cause a TCP stream reset (RST). See, [`writable.destroy()`][] for further details.