|
@ -196,6 +196,8 @@ function IncomingMessage (socket) { |
|
|
this.headers = {}; |
|
|
this.headers = {}; |
|
|
this.trailers = {}; |
|
|
this.trailers = {}; |
|
|
|
|
|
|
|
|
|
|
|
this.readable = true; |
|
|
|
|
|
|
|
|
// request (server) only
|
|
|
// request (server) only
|
|
|
this.url = ""; |
|
|
this.url = ""; |
|
|
|
|
|
|
|
@ -291,6 +293,8 @@ function OutgoingMessage (socket) { |
|
|
this.output = []; |
|
|
this.output = []; |
|
|
this.outputEncodings = []; |
|
|
this.outputEncodings = []; |
|
|
|
|
|
|
|
|
|
|
|
this.writable = true; |
|
|
|
|
|
|
|
|
this._last = false; |
|
|
this._last = false; |
|
|
this.chunkedEncoding = false; |
|
|
this.chunkedEncoding = false; |
|
|
this.shouldKeepAlive = true; |
|
|
this.shouldKeepAlive = true; |
|
|