@@ -194,13 +194,15 @@ an [IPC][] server depending on what it listens to.
194194
195195Possible signatures:
196196
197+ <!-- lint disable no-undefined-references-->
197198* [ ` server.listen(handle[, backlog][, callback]) ` ] [ `server.listen(handle)` ]
198199* [ ` server.listen(options[, callback]) ` ] [ `server.listen(options)` ]
199200* [ ` server.listen(path[, backlog][, callback]) ` ] [ `server.listen(path)` ]
200201 for [ IPC] [ ] servers
201202* <a href =" #net_server_listen_port_host_backlog_callback " >
202203 <code >server.listen([ port[ , host[ , backlog]]] [ , callback ] )</code ></a >
203204 for TCP servers
205+ <!-- lint enable no-undefined-references-->
204206
205207This function is asynchronous. When the server starts listening, the
206208[ ` 'listening' ` ] [ ] event will be emitted. The last parameter ` callback `
@@ -282,12 +284,14 @@ changes:
282284 functions.
283285* Returns: {net.Server}
284286
287+ <!-- lint disable no-undefined-references-->
285288If ` port ` is specified, it behaves the same as
286289<a href =" #net_server_listen_port_host_backlog_callback " >
287290<code >server.listen([ port[ , host[ , backlog]]] [ , callback ] )</code ></a >.
288291Otherwise, if ` path ` is specified, it behaves the same as
289292[ ` server.listen(path[, backlog][, callback]) ` ] [ `server.listen(path)` ] .
290293If none of them is specified, an error will be thrown.
294+ <!-- lint enable no-undefined-references-->
291295
292296If ` exclusive ` is ` false ` (default), then cluster workers will use the same
293297underlying handle, allowing connection handling duties to be shared. When
0 commit comments