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:
Kim Alvefur 2024-08-08 19:18:22 +02:00
parent bb278430cf
commit 4f7c829b1e

View file

@ -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 });