mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.http: Allow passing an SSL context or options table to be used for HTTPS requests (thanks daurnimator)
This commit is contained in:
parent
ee9ef878c4
commit
375e615103
1 changed files with 6 additions and 1 deletions
|
@ -188,7 +188,12 @@ function request(u, ex, callback)
|
|||
return nil, err;
|
||||
end
|
||||
|
||||
req.handler, req.conn = server.wrapclient(conn, req.host, port, listener, "*a", using_https and { mode = "client", protocol = "sslv23" });
|
||||
local sslctx = false;
|
||||
if using_https then
|
||||
sslctx = ex and ex.sslctx or { mode = "client", protocol = "sslv23" };
|
||||
end
|
||||
|
||||
req.handler, req.conn = server.wrapclient(conn, req.host, port, 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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue