diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-12-16 23:32:11 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-12-16 23:32:11 +0000 |
commit | bcc1c1a7d3db5accfe856b511ef946446b929312 (patch) | |
tree | 19fa0823b9f58cbf86368625aef15c98eeb8fe8b /net/http.lua | |
parent | 975be94ee27690746706dfc360730ae0fbb8f754 (diff) | |
parent | ceba28fe83e3c5692701f22ce1ea4def69271f9e (diff) | |
download | prosody-bcc1c1a7d3db5accfe856b511ef946446b929312.tar.gz prosody-bcc1c1a7d3db5accfe856b511ef946446b929312.zip |
Merge 0.9->0.10
Diffstat (limited to 'net/http.lua')
-rw-r--r-- | net/http.lua | 3 |
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 |