mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.http: Throw error if missing TLS context for HTTPS request
Prevents the mistake of creating a http context without any TLS context and then trying to use HTTPS, which doesn't work right. Thanks nils
This commit is contained in:
parent
bb278430cf
commit
4f7c829b1e
1 changed files with 3 additions and 0 deletions
|
@ -294,6 +294,9 @@ local function request(self, u, ex, callback)
|
||||||
if ex and ex.use_dane ~= nil then
|
if ex and ex.use_dane ~= nil then
|
||||||
use_dane = ex.use_dane;
|
use_dane = ex.use_dane;
|
||||||
end
|
end
|
||||||
|
if not sslctx then
|
||||||
|
error("Attempt to make HTTPS request but no 'sslctx' provided in options");
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local http_service = basic_resolver.new(host, port_number, "tcp", { servername = req.host; use_dane = use_dane });
|
local http_service = basic_resolver.new(host, port_number, "tcp", { servername = req.host; use_dane = use_dane });
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue