Displaying 2 results from an estimated 2 matches for "playlist_notify_uri".
2010 Sep 06
2
Adding Configuration Options
...o, I'm in the middle of understanding how the icecast.xml file is parsed,
and how the settings for a specific mount point are read.
In cfgfile.c - _parse_mount() I've added the following lines:
} else if (xmlStrcmp (node->name, XMLSTR("playlist-notify-uri")) == 0) {
mount->playlist_notify_uri = (char *)xmlNodeListGetString (doc,
node->xmlChildrenNode, 1);
}
My goal is to include the URI in my logging.c file, and get the value of the
field:
<mount>
<playlist-notify-uri>http://test.com/icecast/notify</playlist-notify-uri>
</mount>
Basically, I'...
2010 Sep 06
0
Adding Configuration Options
...understanding how the icecast.xml file is parsed,
> and how the settings for a specific mount point are read.
>
> In cfgfile.c - _parse_mount() I've added the following lines:
>
> } else if (xmlStrcmp (node->name, XMLSTR("playlist-notify-uri")) == 0) {
> mount->playlist_notify_uri = (char *)xmlNodeListGetString (doc,
> node->xmlChildrenNode, 1);
> }
>
> My goal is to include the URI in my logging.c file, and get the value of the
> field:
>
> <mount>
> <playlist-notify-uri>http://test.com/icecast/notify</playlist-notify-u...