summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-04-09 15:08:46 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-04-09 15:08:46 +0200
commit807bc6739dd6c65f12b35a1d799ba796655169c0 (patch)
tree4c6754ed1fc86b614951c4bbe345bc64da17cfe5
parentcb232b13deff65ab3479f4b79af2b1de373be27d (diff)
downloadcurl-bagder/altsvc-debug.tar.gz
url: allow non-HTTPS altsvc-matching for debug buildsbagder/altsvc-debug
This is already partly supported but this part was missing. Reported-by: James Fuller
-rw-r--r--lib/url.c9
1 files changed, 8 insertions, 1 deletions
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;