mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
net: type check createServer options object
net.createServer('aPipe') and net.createServer(8080) are mistakes,
and now throw a TypeError instead of silently being treated as an
object.
PR-URL: https://github.com/nodejs/node/pull/2904
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
This commit is contained in:
committed by
Benjamin Gruenbaum
parent
b801e39266
commit
a78b3344f8
@@ -1090,12 +1090,14 @@ function Server(options, connectionListener) {
|
||||
connectionListener = options;
|
||||
options = {};
|
||||
self.on('connection', connectionListener);
|
||||
} else {
|
||||
} else if (options == null || typeof options === 'object') {
|
||||
options = options || {};
|
||||
|
||||
if (typeof connectionListener === 'function') {
|
||||
self.on('connection', connectionListener);
|
||||
}
|
||||
} else {
|
||||
throw new TypeError('options must be an object');
|
||||
}
|
||||
|
||||
this._connections = 0;
|
||||
|
||||
7
test/parallel/test-net-server-options.js
Normal file
7
test/parallel/test-net-server-options.js
Normal file
@@ -0,0 +1,7 @@
|
||||
'use strict';
|
||||
const common = require('../common');
|
||||
const assert = require('assert');
|
||||
const net = require('net');
|
||||
|
||||
assert.throws(function() { net.createServer('path'); }, TypeError);
|
||||
assert.throws(function() { net.createServer(common.PORT); }, TypeError);
|
||||
Reference in New Issue
Block a user