Skip to content
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

name net anonymous functions #9357

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions lib/net.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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.
Expand Down Expand 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 {
Expand Down Expand Up @@ -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 {
Expand Down