search for: default_stream_description

Displaying 1 result from an estimated 1 matches for "default_stream_description".

2004 Aug 06
0
ices2: ice-url header patch
....c --- src/config.c 16 Aug 2002 14:23:43 -0000 1.13 +++ src/config.c 26 Feb 2003 12:15:13 -0000 @@ -33,6 +33,7 @@ #define DEFAULT_LOG_STDERR 1 #define DEFAULT_STREAM_NAME "unnamed ices stream" #define DEFAULT_STREAM_GENRE "ices unset" +#define DEFAULT_STREAM_URL NULL #define DEFAULT_STREAM_DESCRIPTION "no description set" #define DEFAULT_PLAYLIST_MODULE "playlist" #define DEFAULT_HOSTNAME "localhost" @@ -208,6 +209,13 @@ else SET_STRING(config->stream_description); } + else if (strcmp(node->name, "url") == 0) { +...