Merge ephemeral_port from lloyd/node-ldapjs

This commit is contained in:
Patrick Mooney 2013-10-29 23:28:26 -05:00
commit 5d91284e57
1 changed files with 3 additions and 3 deletions

View File

@ -651,7 +651,7 @@ Server.prototype.after = function () {
// All these just reexpose the requisite net.Server APIs
Server.prototype.listen = function (port, host, callback) {
if (!port)
if (typeof port !== 'number')
throw new TypeError('port (number) required');
if (typeof (host) === 'function') {
@ -662,8 +662,8 @@ Server.prototype.listen = function (port, host, callback) {
function _callback() {
if (typeof (port) === 'number') {
self.host = host;
self.port = port;
self.host = self.address().address;
self.port = self.address().port;
} else {
self.host = port;
self.port = self.server.fd;