-
-
Notifications
You must be signed in to change notification settings - Fork 35k
doc: add added: information for net
#7038
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
7ea6513
6024a32
eb22689
9070821
08d2389
eeae965
2b2af96
bc5846f
07fa01d
5b43685
035a523
590ac36
ea29d86
154e420
6342ebe
a70f00b
1640f44
884187b
3a59ccc
587ef17
a11e83e
6fbc6e3
4bdeeec
54fcb38
050e630
39e0900
b11db26
2886b4c
9cfa886
425dbe7
cf804f6
428396a
dbba89d
3c7e40c
9fb7e68
4a54db0
c228f94
5d0a29c
0d73225
11bad26
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -143,6 +143,9 @@ The parameter `backlog` behaves the same as in | |
| [`server.listen(port[, hostname][, backlog][, callback])`][`server.listen(port, host, backlog, callback)`]. | ||
|
|
||
| ### server.listen(options[, callback]) | ||
| <!-- YAML | ||
| added: v0.9.1 | ||
| --> | ||
|
|
||
| * `options` {Object} - Required. Supports the following properties: | ||
| * `port` {Number} - Optional. | ||
|
|
@@ -172,6 +175,9 @@ server.listen({ | |
| ``` | ||
|
|
||
| ### server.listen(path[, backlog][, callback]) | ||
| <!-- YAML | ||
| added: v0.9.1 | ||
| --> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 0.1.90 (I think)?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👌🏼 |
||
|
|
||
| * `path` {String} | ||
| * `backlog` {Number} | ||
|
|
@@ -206,6 +212,9 @@ The parameter `backlog` behaves the same as in | |
| [`server.listen(port[, hostname][, backlog][, callback])`][`server.listen(port, host, backlog, callback)`]. | ||
|
|
||
| ### server.listen(port[, hostname][, backlog][, callback]) | ||
| <!-- YAML | ||
| added: v0.9.1 | ||
| --> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 0.1.90?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👌🏼 |
||
|
|
||
| Begin accepting connections on the specified `port` and `hostname`. If the | ||
| `hostname` is omitted, the server will accept connections on any IPv6 address | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don’t think this overload was available back then, but with
.listen()that’s not too easy to tell… the corresponding docs change for this one happened in 029cfc1, which would mean that0.11.14is appropiate.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👌🏼