0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-22 15:47:56 +01:00
nodejs/count-hosts.js

37 lines
959 B
JavaScript
Raw Normal View History

function encode(i) {
var string = i.toString();
var r = string.length.toString(16) + "\r\n" + string + "\r\n";
return r;
}
2009-02-20 17:06:07 +01:00
function Process(request) {
//
// request.headers => { "Content-Length": "123" }
// request.http_version => "1.1"
//
2009-02-23 21:53:03 +01:00
//log("Processing " + request.path + ". method: " + request.method);
var s = "";
2009-02-21 21:00:40 +01:00
2009-02-22 18:15:18 +01:00
// sends null on the last chunk.
2009-02-21 21:00:40 +01:00
request.onBody = function (chunk) {
if(chunk) {
2009-02-23 21:53:03 +01:00
//log( "got chunk length: " + chunk.length.toString() );
//this.respond(chunk.length.toString(16) + "\r\n" + evalchunk + "\r\n");
s += chunk;
} else {
var output = eval(s);
this.respond(encode(output));
this.respond(encode("\n"));
this.respond("0\r\n\r\n");
this.respond(null);
}
2009-02-20 17:06:07 +01:00
}
2009-02-22 18:15:18 +01:00
request.respond("HTTP/1.0 200 OK\r\n");
request.respond("Content-Type: text-plain\r\n");
request.respond("Transfer-Encoding: chunked\r\n");
request.respond("\r\n");
2009-02-20 17:06:07 +01:00
}