Skip to content

Commit 73a8d3b

Browse files
maasenciohjasnell
authored andcommitted
http: name anonymous functions in _http_server
Refs: #8913 PR-URL: #9055 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Franziska Hinkelmann <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
1 parent ffa5c9e commit 73a8d3b

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

lib/_http_server.js

+10-9
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ function ServerResponse(req) {
9696
}
9797
util.inherits(ServerResponse, OutgoingMessage);
9898

99-
ServerResponse.prototype._finish = function() {
99+
ServerResponse.prototype._finish = function _finish() {
100100
DTRACE_HTTP_SERVER_RESPONSE(this.connection);
101101
LTTNG_HTTP_SERVER_RESPONSE(this.connection);
102102
COUNTER_HTTP_SERVER_RESPONSE();
@@ -131,7 +131,7 @@ function onServerResponseClose() {
131131
if (this._httpMessage) this._httpMessage.emit('close');
132132
}
133133

134-
ServerResponse.prototype.assignSocket = function(socket) {
134+
ServerResponse.prototype.assignSocket = function assignSocket(socket) {
135135
assert(!socket._httpMessage);
136136
socket._httpMessage = this;
137137
socket.on('close', onServerResponseClose);
@@ -141,23 +141,24 @@ ServerResponse.prototype.assignSocket = function(socket) {
141141
this._flush();
142142
};
143143

144-
ServerResponse.prototype.detachSocket = function(socket) {
144+
ServerResponse.prototype.detachSocket = function detachSocket(socket) {
145145
assert(socket._httpMessage === this);
146146
socket.removeListener('close', onServerResponseClose);
147147
socket._httpMessage = null;
148148
this.socket = this.connection = null;
149149
};
150150

151-
ServerResponse.prototype.writeContinue = function(cb) {
151+
ServerResponse.prototype.writeContinue = function writeContinue(cb) {
152152
this._writeRaw('HTTP/1.1 100 Continue' + CRLF + CRLF, 'ascii', cb);
153153
this._sent100 = true;
154154
};
155155

156-
ServerResponse.prototype._implicitHeader = function() {
156+
ServerResponse.prototype._implicitHeader = function _implicitHeader() {
157157
this.writeHead(this.statusCode);
158158
};
159159

160-
ServerResponse.prototype.writeHead = function(statusCode, reason, obj) {
160+
ServerResponse.prototype.writeHead = writeHead;
161+
function writeHead(statusCode, reason, obj) {
161162
var headers;
162163

163164
if (typeof reason === 'string') {
@@ -219,9 +220,9 @@ ServerResponse.prototype.writeHead = function(statusCode, reason, obj) {
219220
}
220221

221222
this._storeHeader(statusLine, headers);
222-
};
223+
}
223224

224-
ServerResponse.prototype.writeHeader = function() {
225+
ServerResponse.prototype.writeHeader = function writeHeader() {
225226
this.writeHead.apply(this, arguments);
226227
};
227228

@@ -250,7 +251,7 @@ function Server(requestListener) {
250251
util.inherits(Server, net.Server);
251252

252253

253-
Server.prototype.setTimeout = function(msecs, callback) {
254+
Server.prototype.setTimeout = function setTimeout(msecs, callback) {
254255
this.timeout = msecs;
255256
if (callback)
256257
this.on('timeout', callback);

0 commit comments

Comments
 (0)