Skip to content

Commit 0b17a45

Browse files
committed
net: support passing undefined to listen()
For consistency with 4.x and 8.x. This commit also contains a forward port of #14232 to confirm that 4.x and 6.x behave identically with respect to the port argument. PR-URL: #14234 Refs: #14205 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Sam Roberts <[email protected]>
1 parent ddc8050 commit 0b17a45

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

lib/net.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1338,7 +1338,7 @@ Server.prototype.listen = function() {
13381338
self.once('listening', lastArg);
13391339
}
13401340

1341-
var port = toNumber(arguments[0]);
1341+
var port = typeof arguments[0] === 'undefined' ? 0 : toNumber(arguments[0]);
13421342

13431343
// The third optional argument is the backlog size.
13441344
// When the ip is omitted it can be the second argument.

test/parallel/test-net-listen-port-option.js

+35
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,38 @@ net.Server().listen({ port: '' + common.PORT }, close);
2626
net.Server().listen({ port: port }, common.fail);
2727
}, /invalid listen argument/i);
2828
});
29+
30+
// Repeat the tests, passing port as an argument, which validates somewhat
31+
// differently.
32+
33+
net.Server().listen(undefined, close);
34+
net.Server().listen('0', close);
35+
36+
// 'nan', skip, treated as a path, not a port
37+
//'+Infinity', skip, treated as a path, not a port
38+
//'-Infinity' skip, treated as a path, not a port
39+
40+
// 4.x treats these as 0, but 6.x treats them as invalid numbers.
41+
[
42+
-1,
43+
123.456,
44+
0x10000,
45+
1 / 0,
46+
-1 / 0,
47+
].forEach(function(port) {
48+
assert.throws(function() {
49+
net.Server().listen(port, common.fail);
50+
}, /"port" argument must be >= 0 and < 65536/i);
51+
});
52+
53+
// null is treated as 0
54+
net.Server().listen(null, close);
55+
56+
// false/true are converted to 0/1, arguably a bug, but fixing would be
57+
// semver-major. Note that true fails because ports that low can't be listened
58+
// on by unprivileged processes.
59+
net.Server().listen(false, close);
60+
61+
net.Server().listen(true).on('error', common.mustCall(function(err) {
62+
assert.strictEqual(err.code, 'EACCES');
63+
}));

0 commit comments

Comments
 (0)