aboutsummaryrefslogtreecommitdiffstats
path: root/net/http
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-04-15 21:54:44 +0200
committerKim Alvefur <zash@zash.se>2014-04-15 21:54:44 +0200
commitc70505a8c46db03728c800f45ff627d555a500a4 (patch)
tree072dbef45243ae261539510fcd02be042bee6ccc /net/http
parent3a70d6aa0521ac1f7b335190c47d55624a5be131 (diff)
parentb31e782722274399d05eabd66eb2dd014b45bed3 (diff)
downloadprosody-c70505a8c46db03728c800f45ff627d555a500a4.tar.gz
prosody-c70505a8c46db03728c800f45ff627d555a500a4.zip
Merge 0.10->trunk
Diffstat (limited to 'net/http')
-rw-r--r--net/http/server.lua7
1 files changed, 3 insertions, 4 deletions
diff --git a/net/http/server.lua b/net/http/server.lua
index 25fce43f..510b77fb 100644
--- a/net/http/server.lua
+++ b/net/http/server.lua
@@ -255,18 +255,17 @@ local function prepare_header(response)
t_insert(output, headerfix[k]..v);
end
t_insert(output, "\r\n\r\n");
- t_insert(output, body);
return output;
end
_M.prepare_header = prepare_header;
function _M.send_response(response, body)
if response.finished then return; end
body = body or response.body or "";
- headers.content_length = #body;
- local output = prepare_header(respone);
+ response.headers.content_length = #body;
+ local output = prepare_header(response);
t_insert(output, body);
response.conn:write(t_concat(output));
- response:finish();
+ response:done();
end
function _M.finish_response(response)
if response.finished then return; end