http: Set _dumped=false initially

The better to keep the IncomingMessage class isomorphic and avoid
creating additional hidden classes.
pull/24504/head
isaacs 2013-01-10 18:16:43 -08:00
parent bb1c03989f
commit dc0c524ce6
1 changed files with 4 additions and 0 deletions

View File

@ -314,6 +314,10 @@ function IncomingMessage(socket) {
// flag for backwards compatibility grossness.
this._consuming = false;
// flag for when we decide that this message cannot possibly be
// read by the user, so there's no point continuing to handle it.
this._dumped = false;
}
util.inherits(IncomingMessage, Stream.Readable);