@@ -258,13 +258,15 @@ an [IPC][] server depending on what it listens to.
258258
259259Possible signatures:
260260
261+ <!-- lint disable no-undefined-references-->
261262* [ ` server.listen(handle[, backlog][, callback]) ` ] [ `server.listen(handle)` ]
262263* [ ` server.listen(options[, callback]) ` ] [ `server.listen(options)` ]
263264* [ ` server.listen(path[, backlog][, callback]) ` ] [ `server.listen(path)` ]
264265 for [ IPC] [ ] servers
265266* <a href =" #net_server_listen_port_host_backlog_callback " >
266267 <code >server.listen([ port[ , host[ , backlog]]] [ , callback ] )</code ></a >
267268 for TCP servers
269+ <!-- lint enable no-undefined-references-->
268270
269271This function is asynchronous. When the server starts listening, the
270272[ ` 'listening' ` ] [ ] event will be emitted. The last parameter ` callback `
@@ -346,12 +348,14 @@ changes:
346348 functions.
347349* Returns: {net.Server}
348350
351+ <!-- lint disable no-undefined-references-->
349352If ` port ` is specified, it behaves the same as
350353<a href =" #net_server_listen_port_host_backlog_callback " >
351354<code >server.listen([ port[ , host[ , backlog]]] [ , callback ] )</code ></a >.
352355Otherwise, if ` path ` is specified, it behaves the same as
353356[ ` server.listen(path[, backlog][, callback]) ` ] [ `server.listen(path)` ] .
354357If none of them is specified, an error will be thrown.
358+ <!-- lint enable no-undefined-references-->
355359
356360If ` exclusive ` is ` false ` (default), then cluster workers will use the same
357361underlying handle, allowing connection handling duties to be shared. When
0 commit comments