Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2020-10-14 21:19:01 +0300
committerRich Trott <rtrott@gmail.com>2020-11-03 03:56:33 +0300
commit07bb0c46c06a35f25772be8c400d11f2a173943d (patch)
tree0a36cfe69a94f215cac7f6e8a737aa6d02962342 /doc/api/net.md
parentdbdd234e4bada1d006c5b62b99406383272f20e8 (diff)
doc: disable no-undefined-references workarounds
The manual links appear to be specific workarounds, so just ignore them PR-URL: https://github.com/nodejs/node/pull/35647 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'doc/api/net.md')
-rw-r--r--doc/api/net.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/api/net.md b/doc/api/net.md
index 7c777df33a2..e8a33fc4f08 100644
--- a/doc/api/net.md
+++ b/doc/api/net.md
@@ -258,6 +258,7 @@ an [IPC][] server depending on what it listens to.
Possible signatures:
+<!--lint disable no-undefined-references-->
* [`server.listen(handle[, backlog][, callback])`][`server.listen(handle)`]
* [`server.listen(options[, callback])`][`server.listen(options)`]
* [`server.listen(path[, backlog][, callback])`][`server.listen(path)`]
@@ -265,6 +266,7 @@ Possible signatures:
* <a href="#net_server_listen_port_host_backlog_callback">
<code>server.listen([port[, host[, backlog]]][, callback])</code></a>
for TCP servers
+<!--lint enable no-undefined-references-->
This function is asynchronous. When the server starts listening, the
[`'listening'`][] event will be emitted. The last parameter `callback`
@@ -346,12 +348,14 @@ changes:
functions.
* Returns: {net.Server}
+<!--lint disable no-undefined-references-->
If `port` is specified, it behaves the same as
<a href="#net_server_listen_port_host_backlog_callback">
<code>server.listen([port[, host[, backlog]]][, callback])</code></a>.
Otherwise, if `path` is specified, it behaves the same as
[`server.listen(path[, backlog][, callback])`][`server.listen(path)`].
If none of them is specified, an error will be thrown.
+<!--lint enable no-undefined-references-->
If `exclusive` is `false` (default), then cluster workers will use the same
underlying handle, allowing connection handling duties to be shared. When