summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikeal Rogers <mikeal.rogers@gmail.com>2010-08-01 22:22:20 -0700
committerRyan Dahl <ry@tinyclouds.org>2010-08-01 22:34:17 -0700
commit3214116be6bd088a02d0447f57b0ba15038adce0 (patch)
treea1c06459409a04254eaa0991a59673990e7ed6e3
parent71009ad3fe35af72af6694478405eaa3dc86ca35 (diff)
downloadnode-new-3214116be6bd088a02d0447f57b0ba15038adce0.tar.gz
Implement keep-alive for http.Client
Send the 'Connection: keep-alive' header in your request to enable.
-rw-r--r--doc/api.markdown10
-rw-r--r--lib/http.js14
-rw-r--r--test/simple/test-http-keep-alive.js49
3 files changed, 71 insertions, 2 deletions
diff --git a/doc/api.markdown b/doc/api.markdown
index f4f450af93..37a8e2db05 100644
--- a/doc/api.markdown
+++ b/doc/api.markdown
@@ -1911,6 +1911,16 @@ Example of connecting to `google.com`:
});
});
+There are a few special headers that should be noted.
+
+* The 'Host' header is not added by Node, and is usually required by
+ website.
+
+* Sending a 'Connection: keep-alive' will notify Node that the connection to
+ the server should be persisted until the next request.
+
+* Sending a 'Content-length' header will disable the default chunked encoding.
+
### Event: 'upgrade'
diff --git a/lib/http.js b/lib/http.js
index 94c390f78f..ff5450317a 100644
--- a/lib/http.js
+++ b/lib/http.js
@@ -374,7 +374,11 @@ OutgoingMessage.prototype._storeHeader = function (firstLine, headers) {
if (connectionExpression.test(field)) {
sentConnectionHeader = true;
- if (closeExpression.test(value)) this._last = true;
+ if (closeExpression.test(value)) {
+ this._last = true;
+ } else {
+ this.shouldKeepAlive = true;
+ }
} else if (transferEncodingExpression.test(field)) {
sentTransferEncodingHeader = true;
@@ -855,7 +859,13 @@ function Client ( ) {
// For the moment we reconnect for every request. FIXME!
// All that should be required for keep-alive is to not reconnect,
// but outgoingFlush instead.
- self.end();
+ if (req.shouldKeepAlive) {
+ outgoingFlush(self)
+ self._outgoing.shift()
+ outgoingFlush(self)
+ } else {
+ self.end();
+ }
});
req.emit("response", res);
diff --git a/test/simple/test-http-keep-alive.js b/test/simple/test-http-keep-alive.js
new file mode 100644
index 0000000000..edcb209597
--- /dev/null
+++ b/test/simple/test-http-keep-alive.js
@@ -0,0 +1,49 @@
+common = require("../common");
+assert = common.assert
+
+assert = require("assert");
+http = require("http");
+sys = require("sys");
+
+body = "hello world\n";
+headers = {'connection':'keep-alive'}
+
+server = http.createServer(function (req, res) {
+ res.writeHead(200, {"Content-Length": body.length});
+ res.write(body);
+ res.end();
+});
+
+connectCount = 0;
+
+server.listen(common.PORT, function () {
+ var client = http.createClient(common.PORT);
+
+ client.addListener("connect", function () {
+ common.error("CONNECTED")
+ connectCount++;
+ })
+
+ var request = client.request("GET", "/", headers);
+ request.end();
+ request.addListener('response', function (response) {
+ common.error('response start');
+
+
+ response.addListener("end", function () {
+ common.error('response end');
+ var req = client.request("GET", "/", headers);
+ req.addListener('response', function (response) {
+ response.addListener("end", function () {
+ client.end();
+ server.close();
+ })
+ })
+ req.end();
+ });
+ });
+});
+
+process.addListener('exit', function () {
+ assert.equal(1, connectCount);
+});