|
@ -322,7 +322,7 @@ OutgoingMessage.prototype._send = function (data, encoding) { |
|
|
} |
|
|
} |
|
|
this._headerSent = true; |
|
|
this._headerSent = true; |
|
|
} |
|
|
} |
|
|
this._writeRaw(data, encoding); |
|
|
return this._writeRaw(data, encoding); |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
OutgoingMessage.prototype._writeRaw = function(data, encoding) { |
|
|
OutgoingMessage.prototype._writeRaw = function(data, encoding) { |
|
@ -347,7 +347,6 @@ OutgoingMessage.prototype._writeRaw = function(data, encoding) { |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
OutgoingMessage.prototype._buffer = function (data, encoding) { |
|
|
OutgoingMessage.prototype._buffer = function (data, encoding) { |
|
|
// Buffer
|
|
|
|
|
|
if (data.length === 0) return; |
|
|
if (data.length === 0) return; |
|
|
|
|
|
|
|
|
var length = this.output.length; |
|
|
var length = this.output.length; |
|
|