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

30 lines
786 B
JavaScript
Raw Normal View History

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);
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" + chunk + "\r\n");
} else {
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-23 21:53:03 +01:00
request.respond("0\r\n\r\n");
//request.respond("Content-Length: 6\r\n\r\nhello\n");
//
2009-02-20 17:06:07 +01:00
}