aboutsummaryrefslogtreecommitdiffstats
path: root/net/http.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2013-12-16 23:32:29 +0000
committerMatthew Wild <mwild1@gmail.com>2013-12-16 23:32:29 +0000
commit75633b28898dde724b07a805b6e55d8255b6544e (patch)
treeab0fddd4e080c463c9921b89873ff055071dd4e8 /net/http.lua
parent3cb94419f20cc327d4137b1f4751a27cfcf91ccc (diff)
parentbcc1c1a7d3db5accfe856b511ef946446b929312 (diff)
downloadprosody-75633b28898dde724b07a805b6e55d8255b6544e.tar.gz
prosody-75633b28898dde724b07a805b6e55d8255b6544e.zip
Merge 0.10->trunk
Diffstat (limited to 'net/http.lua')
-rw-r--r--net/http.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/http.lua b/net/http.lua
index 5ec3163c..ab9ec7b6 100644
--- a/net/http.lua
+++ b/net/http.lua
@@ -20,6 +20,7 @@ local t_insert, t_concat = table.insert, table.concat;
local pairs = pairs;
local tonumber, tostring, xpcall, select, traceback =
tonumber, tostring, xpcall, select, debug.traceback;
+local assert, error = assert, error
local log = require "util.logger".init("http");
@@ -173,7 +174,7 @@ function request(u, ex, callback)
sslctx = ex and ex.sslctx or { mode = "client", protocol = "sslv23", options = { "no_sslv2" } };
end
- req.handler, req.conn = server.wrapclient(conn, host, port_number, listener, "*a", sslctx);
+ req.handler, req.conn = assert(server.wrapclient(conn, host, port_number, listener, "*a", sslctx));
req.write = function (...) return req.handler:write(...); end
req.callback = function (content, code, request, response) log("debug", "Calling callback, status %s", code or "---"); return select(2, xpcall(function () return callback(content, code, request, response) end, handleerr)); end