[http] Also allow remote playlists to have https streams (fixes #1251)

Fix it by adding net_is_http_or_https() utility function in misc.h and make
sure it used whenever a http protocol check is made.
This commit is contained in:
ejurgensen
2021-05-19 22:53:25 +02:00
parent 947d3a0719
commit c1db4d914f
7 changed files with 14 additions and 8 deletions

View File

@@ -54,6 +54,9 @@ net_bind(short unsigned *port, int type, const char *log_service_name);
int
net_evhttp_bind(struct evhttp *evhttp, short unsigned port, const char *log_service_name);
// Just checks if the protocol is http or https
bool
net_is_http_or_https(const char *url);
/* ----------------------- Conversion/hashing/sanitizers -------------------- */