diff --git a/lib/net.js b/lib/net.js index 628908614f..ce60d2f352 100644 --- a/lib/net.js +++ b/lib/net.js @@ -269,7 +269,7 @@ function onSocketEnd() { this.readable = false; maybeDestroy(this); } else { - this.once('end', function() { + this.once('end', function end() { this.readable = false; maybeDestroy(this); }); @@ -669,7 +669,7 @@ Socket.prototype._writeGeneric = function(writev, data, encoding, cb) { if (this.connecting) { this._pendingData = data; this._pendingEncoding = encoding; - this.once('connect', function() { + this.once('connect', function connect() { this._writeGeneric(writev, data, encoding, cb); }); return; @@ -991,7 +991,7 @@ function lookupAndConnect(self, options) { debug('connect: dns options', dnsopts); self._host = host; var lookup = options.lookup || dns.lookup; - lookup(host, dnsopts, function(err, ip, addressType) { + lookup(host, dnsopts, function emitLookup(err, ip, addressType) { self.emit('lookup', err, ip, addressType, host); // It's possible we were destroyed while looking this up. @@ -1389,7 +1389,7 @@ Server.prototype.listen = function() { }; function lookupAndListen(self, port, address, backlog, exclusive) { - require('dns').lookup(address, function(err, ip, addressType) { + require('dns').lookup(address, function doListening(err, ip, addressType) { if (err) { self.emit('error', err); } else { @@ -1494,7 +1494,7 @@ Server.prototype.close = function(cb) { if (typeof cb === 'function') { if (!this._handle) { - this.once('close', function() { + this.once('close', function close() { cb(new Error('Not running')); }); } else {