From: Ryan Dahl Date: Wed, 4 Nov 2009 11:37:52 +0000 (+0100) Subject: Expose http.ClientRequest and http.ServerResponse X-Git-Tag: v0.1.17~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=60131fc88c165b3b556a16bc25f244c6d63a0482;p=platform%2Fupstream%2Fnodejs.git Expose http.ClientRequest and http.ServerResponse --- diff --git a/lib/http.js b/lib/http.js index c94ccfa..f31d437 100644 --- a/lib/http.js +++ b/lib/http.js @@ -314,6 +314,7 @@ function ServerResponse () { this.use_chunked_encoding_by_default = true; } process.inherits(ServerResponse, OutgoingMessage); +exports.ServerResponse = ServerResponse; ServerResponse.prototype.sendHeader = function (statusCode, headers) { var reason = STATUS_CODES[statusCode] || "unknown"; @@ -336,6 +337,7 @@ function ClientRequest (method, uri, headers) { this.sendHeaderLines(method + " " + uri + " HTTP/1.0\r\n", headers); } process.inherits(ClientRequest, OutgoingMessage); +exports.ClientRequest = ClientRequest; ClientRequest.prototype.finish = function (responseListener) { this.addListener("response", responseListener);