From 03e45e0a9a98c41ca264a56b09e543fecfc5d690 Mon Sep 17 00:00:00 2001 From: maasencioh Date: Wed, 12 Oct 2016 15:50:15 +0200 Subject: [PATCH] http: name anonymous functions in _http_server Ref: https://github.com/nodejs/node/issues/8913 --- lib/_http_server.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/_http_server.js b/lib/_http_server.js index 731c95bb44a5fd..5fd84d558ff7de 100644 --- a/lib/_http_server.js +++ b/lib/_http_server.js @@ -96,7 +96,7 @@ function ServerResponse(req) { } util.inherits(ServerResponse, OutgoingMessage); -ServerResponse.prototype._finish = function() { +ServerResponse.prototype._finish = function _finish() { DTRACE_HTTP_SERVER_RESPONSE(this.connection); LTTNG_HTTP_SERVER_RESPONSE(this.connection); COUNTER_HTTP_SERVER_RESPONSE(); @@ -131,7 +131,7 @@ function onServerResponseClose() { if (this._httpMessage) this._httpMessage.emit('close'); } -ServerResponse.prototype.assignSocket = function(socket) { +ServerResponse.prototype.assignSocket = function assignSocket(socket) { assert(!socket._httpMessage); socket._httpMessage = this; socket.on('close', onServerResponseClose); @@ -141,23 +141,23 @@ ServerResponse.prototype.assignSocket = function(socket) { this._flush(); }; -ServerResponse.prototype.detachSocket = function(socket) { +ServerResponse.prototype.detachSocket = function detachSocket(socket) { assert(socket._httpMessage === this); socket.removeListener('close', onServerResponseClose); socket._httpMessage = null; this.socket = this.connection = null; }; -ServerResponse.prototype.writeContinue = function(cb) { +ServerResponse.prototype.writeContinue = function writeContinue(cb) { this._writeRaw('HTTP/1.1 100 Continue' + CRLF + CRLF, 'ascii', cb); this._sent100 = true; }; -ServerResponse.prototype._implicitHeader = function() { +ServerResponse.prototype._implicitHeader = function _implicitHeader() { this.writeHead(this.statusCode); }; -ServerResponse.prototype.writeHead = function(statusCode, reason, obj) { +ServerResponse.prototype.writeHead = function writeHead(statusCode, reason, obj) { var headers; if (typeof reason === 'string') { @@ -221,7 +221,7 @@ ServerResponse.prototype.writeHead = function(statusCode, reason, obj) { this._storeHeader(statusLine, headers); }; -ServerResponse.prototype.writeHeader = function() { +ServerResponse.prototype.writeHeader = function writeHeader() { this.writeHead.apply(this, arguments); }; @@ -250,7 +250,7 @@ function Server(requestListener) { util.inherits(Server, net.Server); -Server.prototype.setTimeout = function(msecs, callback) { +Server.prototype.setTimeout = function setTimeout(msecs, callback) { this.timeout = msecs; if (callback) this.on('timeout', callback);