From 807bc6739dd6c65f12b35a1d799ba796655169c0 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 9 Apr 2020 15:08:46 +0200 Subject: url: allow non-HTTPS altsvc-matching for debug builds This is already partly supported but this part was missing. Reported-by: James Fuller --- lib/url.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/url.c b/lib/url.c index 47fc66aed..4c62b50ec 100644 --- a/lib/url.c +++ b/lib/url.c @@ -3040,7 +3040,14 @@ static CURLcode parse_connect_to_slist(struct Curl_easy *data, #ifdef USE_ALTSVC if(data->asi && !host && (port == -1) && - (conn->handler->protocol == CURLPROTO_HTTPS)) { + ((conn->handler->protocol == CURLPROTO_HTTPS) || +#ifdef CURLDEBUG + /* allow debug builds to circumvent the HTTPS restriction */ + getenv("CURL_ALTSVC_HTTP") +#else + 0 +#endif + )) { /* no connect_to match, try alt-svc! */ enum alpnid srcalpnid; bool hit; -- cgit v1.2.1