2009-02-20 17:06:07 +01:00
|
|
|
function Process(request) {
|
2009-02-21 21:00:40 +01:00
|
|
|
log("Processing " + request.path + ". method: " + request.method);
|
|
|
|
|
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) {
|
2009-02-22 18:15:18 +01:00
|
|
|
log("body chunk: '" + chunk + "'");
|
2009-02-20 17:06:07 +01:00
|
|
|
}
|
2009-02-22 18:15:18 +01:00
|
|
|
|
2009-02-22 17:46:11 +01:00
|
|
|
request.respond("HTTP/1.0 200 OK\r\n")
|
2009-02-23 13:48:34 +01:00
|
|
|
request.respond("Content-Type: text-plain\r\n")
|
|
|
|
request.respond("Content-Length: 6\r\n\r\nhello\n");
|
2009-02-22 18:15:18 +01:00
|
|
|
request.respond(null); // eof
|
2009-02-20 17:06:07 +01:00
|
|
|
}
|