summaryrefslogtreecommitdiff
path: root/lib/_http_incoming.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/_http_incoming.js')
-rw-r--r--lib/_http_incoming.js12
1 files changed, 1 insertions, 11 deletions
diff --git a/lib/_http_incoming.js b/lib/_http_incoming.js
index 295a3ef4bd..e16f198dba 100644
--- a/lib/_http_incoming.js
+++ b/lib/_http_incoming.js
@@ -47,7 +47,7 @@ function IncomingMessage(socket) {
// response (client) only
this.statusCode = null;
this.statusMessage = null;
- this._client = socket; // deprecated
+ this.client = socket;
// flag for backwards compatibility grossness.
this._consuming = false;
@@ -61,16 +61,6 @@ util.inherits(IncomingMessage, Stream.Readable);
exports.IncomingMessage = IncomingMessage;
-Object.defineProperty(IncomingMessage.prototype, 'client', {
- configurable: true,
- enumerable: true,
- get: util.deprecate(function() {
- return this._client;
- }, 'client is deprecated, use socket or connection instead'),
- set: util.deprecate(function(val) {
- this._client = val;
- }, 'client is deprecated, use socket or connection instead')
-});
IncomingMessage.prototype.setTimeout = function(msecs, callback) {
if (callback)