You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
295 B

function Process(request) {
log("Processing " + request.path + ". method: " + request.method);
/*
request.onBody = function (chunk) {
log("body chunk: " + chunk);
}
request.respond("HTTP/1.1 200 OK\r\nContent-Type: text-plain\r\n\r\nhello");
request.response_complete
*/
}