@@ -96,7 +96,7 @@ function ServerResponse(req) {
96
96
}
97
97
util . inherits ( ServerResponse , OutgoingMessage ) ;
98
98
99
- ServerResponse . prototype . _finish = function ( ) {
99
+ ServerResponse . prototype . _finish = function _finish ( ) {
100
100
DTRACE_HTTP_SERVER_RESPONSE ( this . connection ) ;
101
101
LTTNG_HTTP_SERVER_RESPONSE ( this . connection ) ;
102
102
COUNTER_HTTP_SERVER_RESPONSE ( ) ;
@@ -131,7 +131,7 @@ function onServerResponseClose() {
131
131
if ( this . _httpMessage ) this . _httpMessage . emit ( 'close' ) ;
132
132
}
133
133
134
- ServerResponse . prototype . assignSocket = function ( socket ) {
134
+ ServerResponse . prototype . assignSocket = function assignSocket ( socket ) {
135
135
assert ( ! socket . _httpMessage ) ;
136
136
socket . _httpMessage = this ;
137
137
socket . on ( 'close' , onServerResponseClose ) ;
@@ -141,23 +141,24 @@ ServerResponse.prototype.assignSocket = function(socket) {
141
141
this . _flush ( ) ;
142
142
} ;
143
143
144
- ServerResponse . prototype . detachSocket = function ( socket ) {
144
+ ServerResponse . prototype . detachSocket = function detachSocket ( socket ) {
145
145
assert ( socket . _httpMessage === this ) ;
146
146
socket . removeListener ( 'close' , onServerResponseClose ) ;
147
147
socket . _httpMessage = null ;
148
148
this . socket = this . connection = null ;
149
149
} ;
150
150
151
- ServerResponse . prototype . writeContinue = function ( cb ) {
151
+ ServerResponse . prototype . writeContinue = function writeContinue ( cb ) {
152
152
this . _writeRaw ( 'HTTP/1.1 100 Continue' + CRLF + CRLF , 'ascii' , cb ) ;
153
153
this . _sent100 = true ;
154
154
} ;
155
155
156
- ServerResponse . prototype . _implicitHeader = function ( ) {
156
+ ServerResponse . prototype . _implicitHeader = function _implicitHeader ( ) {
157
157
this . writeHead ( this . statusCode ) ;
158
158
} ;
159
159
160
- ServerResponse . prototype . writeHead = function ( statusCode , reason , obj ) {
160
+ ServerResponse . prototype . writeHead = writeHead ;
161
+ function writeHead ( statusCode , reason , obj ) {
161
162
var headers ;
162
163
163
164
if ( typeof reason === 'string' ) {
@@ -219,9 +220,9 @@ ServerResponse.prototype.writeHead = function(statusCode, reason, obj) {
219
220
}
220
221
221
222
this . _storeHeader ( statusLine , headers ) ;
222
- } ;
223
+ }
223
224
224
- ServerResponse . prototype . writeHeader = function ( ) {
225
+ ServerResponse . prototype . writeHeader = function writeHeader ( ) {
225
226
this . writeHead . apply ( this , arguments ) ;
226
227
} ;
227
228
@@ -250,7 +251,7 @@ function Server(requestListener) {
250
251
util . inherits ( Server , net . Server ) ;
251
252
252
253
253
- Server . prototype . setTimeout = function ( msecs , callback ) {
254
+ Server . prototype . setTimeout = function setTimeout ( msecs , callback ) {
254
255
this . timeout = msecs ;
255
256
if ( callback )
256
257
this . on ( 'timeout' , callback ) ;
0 commit comments