Commit 5d62624e authored by Vladimir Dronnikov's avatar Vladimir Dronnikov
Browse files

cleanup http module

parent 4fbff3f3
......@@ -6,9 +6,8 @@
------------------------------------------------------------------------------
require("http").createServer(80, function(req, res)
-- analyse method and url
print("+R", req.method, req.url)
print("+R", req.method, req.url, node.heap())
-- setup handler of headers, if any
--[[
req.onheader = function(self, name, value)
-- print("+H", name, value)
-- E.g. look for "content-type" header,
......@@ -34,8 +33,7 @@ require("http").createServer(80, function(req, res)
res:finish()
end
end
]]
-- or just do something not waiting till body (if any) comes
--res:finish("Hello, world!")
res:finish("Salut, monde!")
--res:finish("Salut, monde!")
end)
......@@ -87,8 +87,6 @@ do
return res
end
tmr.wdclr()
------------------------------------------------------------------------------
-- HTTP parser
------------------------------------------------------------------------------
......@@ -190,8 +188,6 @@ do
end
end
tmr.wdclr()
------------------------------------------------------------------------------
-- HTTP server
------------------------------------------------------------------------------
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment