cleanup http module

This commit is contained in:
Vladimir Dronnikov 2015-01-19 23:32:16 +03:00
parent 4fbff3f3ac
commit 5d62624e08
2 changed files with 3 additions and 9 deletions

View File

@ -6,9 +6,8 @@
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
require("http").createServer(80, function(req, res) require("http").createServer(80, function(req, res)
-- analyse method and url -- analyse method and url
print("+R", req.method, req.url) print("+R", req.method, req.url, node.heap())
-- setup handler of headers, if any -- setup handler of headers, if any
--[[
req.onheader = function(self, name, value) req.onheader = function(self, name, value)
-- print("+H", name, value) -- print("+H", name, value)
-- E.g. look for "content-type" header, -- E.g. look for "content-type" header,
@ -34,8 +33,7 @@ require("http").createServer(80, function(req, res)
res:finish() res:finish()
end end
end end
]]
-- or just do something not waiting till body (if any) comes -- or just do something not waiting till body (if any) comes
--res:finish("Hello, world!") --res:finish("Hello, world!")
res:finish("Salut, monde!") --res:finish("Salut, monde!")
end) end)

View File

@ -87,8 +87,6 @@ do
return res return res
end end
tmr.wdclr()
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
-- HTTP parser -- HTTP parser
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
@ -190,8 +188,6 @@ do
end end
end end
tmr.wdclr()
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
-- HTTP server -- HTTP server
------------------------------------------------------------------------------ ------------------------------------------------------------------------------