doc: document backlog for server.listen() variants
The backlog parameter is supported by all variations of net.Server.listen(), but wasn't consistently documented. This commit brings the documentation into a more consistent state. Refs: https://github.com/nodejs/node/pull/4056 PR-URL: https://github.com/nodejs/node/pull/4025 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
This commit is contained in:
parent
d63cceeb10
commit
9e1b7aa874
@ -83,9 +83,10 @@ when sockets were sent to forks.
|
|||||||
|
|
||||||
Callback should take two arguments `err` and `count`.
|
Callback should take two arguments `err` and `count`.
|
||||||
|
|
||||||
### server.listen(handle[, callback])
|
### server.listen(handle[, backlog][, callback])
|
||||||
|
|
||||||
* `handle` {Object}
|
* `handle` {Object}
|
||||||
|
* `backlog` {Number}
|
||||||
* `callback` {Function}
|
* `callback` {Function}
|
||||||
|
|
||||||
The `handle` object can be set to either a server or socket (anything
|
The `handle` object can be set to either a server or socket (anything
|
||||||
@ -102,6 +103,9 @@ This function is asynchronous. When the server has been bound,
|
|||||||
The last parameter `callback` will be added as a listener for the
|
The last parameter `callback` will be added as a listener for the
|
||||||
[`'listening'`][] event.
|
[`'listening'`][] event.
|
||||||
|
|
||||||
|
The parameter `backlog` behaves the same as in
|
||||||
|
[`server.listen(port, \[host\], \[backlog\], \[callback\])`][].
|
||||||
|
|
||||||
### server.listen(options[, callback])
|
### server.listen(options[, callback])
|
||||||
|
|
||||||
* `options` {Object} - Required. Supports the following properties:
|
* `options` {Object} - Required. Supports the following properties:
|
||||||
@ -114,9 +118,8 @@ The last parameter `callback` will be added as a listener for the
|
|||||||
|
|
||||||
The `port`, `host`, and `backlog` properties of `options`, as well as the
|
The `port`, `host`, and `backlog` properties of `options`, as well as the
|
||||||
optional callback function, behave as they do on a call to
|
optional callback function, behave as they do on a call to
|
||||||
[server.listen(port, \[host\], \[backlog\], \[callback\])
|
[`server.listen(port, \[host\], \[backlog\], \[callback\])`][]. Alternatively,
|
||||||
](#net_server_listen_port_hostname_backlog_callback). Alternatively, the `path`
|
the `path` option can be used to specify a UNIX socket.
|
||||||
option can be used to specify a UNIX socket.
|
|
||||||
|
|
||||||
If `exclusive` is `false` (default), then cluster workers will use the same
|
If `exclusive` is `false` (default), then cluster workers will use the same
|
||||||
underlying handle, allowing connection handling duties to be shared. When
|
underlying handle, allowing connection handling duties to be shared. When
|
||||||
@ -130,9 +133,10 @@ shown below.
|
|||||||
exclusive: true
|
exclusive: true
|
||||||
});
|
});
|
||||||
|
|
||||||
### server.listen(path[, callback])
|
### server.listen(path[, backlog][, callback])
|
||||||
|
|
||||||
* `path` {String}
|
* `path` {String}
|
||||||
|
* `backlog` {Number}
|
||||||
* `callback` {Function}
|
* `callback` {Function}
|
||||||
|
|
||||||
Start a local socket server listening for connections on the given `path`.
|
Start a local socket server listening for connections on the given `path`.
|
||||||
@ -157,6 +161,9 @@ double-backslashes, such as:
|
|||||||
net.createServer().listen(
|
net.createServer().listen(
|
||||||
path.join('\\\\?\\pipe', process.cwd(), 'myctl'))
|
path.join('\\\\?\\pipe', process.cwd(), 'myctl'))
|
||||||
|
|
||||||
|
The parameter `backlog` behaves the same as in
|
||||||
|
[`server.listen(port, \[host\], \[backlog\], \[callback\])`][].
|
||||||
|
|
||||||
### server.listen(port[, hostname][, backlog][, callback])
|
### server.listen(port[, hostname][, backlog][, callback])
|
||||||
|
|
||||||
Begin accepting connections on the specified `port` and `hostname`. If the
|
Begin accepting connections on the specified `port` and `hostname`. If the
|
||||||
@ -677,6 +684,7 @@ Returns true if input is a version 6 IP address, otherwise returns false.
|
|||||||
[`pause()`]: #net_socket_pause
|
[`pause()`]: #net_socket_pause
|
||||||
[`resume()`]: #net_socket_resume
|
[`resume()`]: #net_socket_resume
|
||||||
[`server.getConnections`]: #net_server_getconnections_callback
|
[`server.getConnections`]: #net_server_getconnections_callback
|
||||||
|
[`server.listen(port, \[host\], \[backlog\], \[callback\])`]: #net_server_listen_port_hostname_backlog_callback
|
||||||
[`socket.connect(options\[, connectListener\])`]: #net_socket_connect_options_connectlistener
|
[`socket.connect(options\[, connectListener\])`]: #net_socket_connect_options_connectlistener
|
||||||
[`socket.connect`]: #net_socket_connect_options_connectlistener
|
[`socket.connect`]: #net_socket_connect_options_connectlistener
|
||||||
[`socket.setTimeout()`]: #net_socket_settimeout_timeout_callback
|
[`socket.setTimeout()`]: #net_socket_settimeout_timeout_callback
|
||||||
|
Loading…
x
Reference in New Issue
Block a user