Displaying 1 result from an estimated 1 matches for "2fstream".
Did you mean:
fstream
2009 Dec 23
0
icecast 2.3.2 generated buildm3u don't support authenticated streaming via https
...stream, I still get an m3u file
containing the HTTP url, e.g.:
http://user:pass at icecast-server:8000/stream.ogg
Expected:
https://user:pass at icecast-server:8001/stream.ogg
Test:
$ curl --insecure
'https://icecast-server:8001/admin/buildm3u?username=user&password=pass&mount=%2Fstream.ogg'
http://user:pass at icecast-server:8000/stream.ogg
Looks like this is caused by too-much hardcoding in
icecast-2.3.2/src/admin.c:
static void command_buildm3u(client_t *client, const char *mount)
{
const char *username = NULL;
const char *password = NULL;
ice_config_t...