Displaying 5 results from an estimated 5 matches for "_parse_mount".
2016 Jun 06
0
[PATCH] Config: Rename mp3-metadata-interval to icy-metadata-interval
...= (char *) xmlCharStrdup(CONFIG_DEFAULT_LOCATION);
}
-
+
if (!configuration->admin ||
strcmp(configuration->admin, CONFIG_DEFAULT_ADMIN) == 0) {
ICECAST_LOG_WARN("Warning, <admin> contact not configured, using "
@@ -1290,7 +1290,7 @@ static void _parse_mount(xmlDocPtr doc,
continue;
if (xmlStrcmp(node->name, XMLSTR("mount-name")) == 0) {
- mount->mountname = (char *)xmlNodeListGetString(doc,
+ mount->mountname = (char *)xmlNodeListGetString(doc,
node->xmlChildren...
2010 Sep 06
2
Adding Configuration Options
So, 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 va...
2010 Sep 06
0
Adding Configuration Options
On 06/09/10 16:42, Nicholas Young wrote:
> So, 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...
2014 Jan 23
2
Icecast 2.4 beta4 release
...on the
icecast-dev mailing list.
(Please do NOT cross-post to both lists, do NOT reply to the icecast
mailing list, PLEASE reply to icecast-dev at xiph.org only).
* Fixed a memory leak. Lost headers of stream because of wrong ref
counter in associated refbuf objects.
* avoid memory leak in _parse_mount() when "type"-attribute is set
* Completed HTTP PUT support, send 100-continue-header,
if client requests it. We need to adhere to HTTP1.1 here.
* Updated web interface to be more XHTML compliant.
* corrected Date-header format to conform the standard (see RFC1123).
Thanks t...
2014 Jan 23
2
Icecast 2.4 beta4 release
...on the
icecast-dev mailing list.
(Please do NOT cross-post to both lists, do NOT reply to the icecast
mailing list, PLEASE reply to icecast-dev at xiph.org only).
* Fixed a memory leak. Lost headers of stream because of wrong ref
counter in associated refbuf objects.
* avoid memory leak in _parse_mount() when "type"-attribute is set
* Completed HTTP PUT support, send 100-continue-header,
if client requests it. We need to adhere to HTTP1.1 here.
* Updated web interface to be more XHTML compliant.
* corrected Date-header format to conform the standard (see RFC1123).
Thanks t...