# HG changeset patch # User Matthew Wild # Date 1264079692 0 # Node ID dfb5fa77d4377c38c22355dfc9195918f30efab6 # Parent ff5039708b191f836dec6d61d97e59989dd4b6c7 net.httpserver: Make it possible to return responses with no body diff -r ff5039708b19 -r dfb5fa77d437 net/httpserver.lua --- a/net/httpserver.lua Thu Jan 21 13:10:13 2010 +0000 +++ b/net/httpserver.lua Thu Jan 21 13:14:52 2010 +0000 @@ -36,8 +36,8 @@ local function send_response(request, response) -- Write status line local resp; - if response.body then - local body = tostring(response.body); + if response.body or response.headers then + local body = response.body and tostring(response.body); log("debug", "Sending response to %s", request.id); resp = { "HTTP/1.0 ", response.status or "200 OK", "\r\n"}; local h = response.headers; @@ -49,14 +49,14 @@ t_insert(resp, "\r\n"); end end - if not (h and h["Content-Length"]) then + if body and not (h and h["Content-Length"]) then t_insert(resp, "Content-Length: "); t_insert(resp, #body); t_insert(resp, "\r\n"); end t_insert(resp, "\r\n"); - if request.method ~= "HEAD" then + if body and request.method ~= "HEAD" then t_insert(resp, body); end else