mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
net.httpserver: Make it possible to return responses with no body
This commit is contained in:
parent
4c3707ec7b
commit
e79181eab3
1 changed files with 4 additions and 4 deletions
|
@ -36,8 +36,8 @@ end
|
|||
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 @@ local function send_response(request, response)
|
|||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue