search for: yp_public

Displaying 7 results from an estimated 7 matches for "yp_public".

2004 Aug 06
2
Stream metadata settings
On Mon, 2003-12-01 at 08:28, Melanie wrote: > > diff -b -B -r -u -P --exclude-from=ignore ../icecast/src/source.c > ./src/source.c > --- ../icecast/src/source.c Fri Nov 14 17:51:59 2003 > +++ ./src/source.c Mon Dec 1 09:14:34 2003 > @@ -139,7 +192,6 @@ > #endif > > free(source->mount); > - free(source->fallback_mount); >
2004 Aug 06
0
Stream metadata settings
True - in that case, another fix ist called for, but it's just as simple: diff -b -B -r -u -P --exclude-from=ignore ../icecast/src/source.c ./src/source.c--- ../icecast/src/source.c Mon Dec 1 14:49:52 2003 +++ ./src/source.c Mon Dec 1 14:50:56 2003 @@ -72,7 +72,7 @@ src->yp_public = 0; if(mountinfo != NULL) { - src->fallback_mount = mountinfo->fallback_mount; + src->fallback_mount = (char *)strdup(mountinfo->fallback_mount); src->max_listeners = mountinfo->max_listeners; src->dumpfilename = mountinfo->dumpfile;...
2004 Aug 06
1
Stream metadata settings
...another fix ist called for, but it's just as simple: > > diff -b -B -r -u -P --exclude-from=ignore ../icecast/src/source.c > ./src/source.c--- ../icecast/src/source.c Mon Dec 1 14:49:52 2003 > +++ ./src/source.c Mon Dec 1 14:50:56 2003 > @@ -72,7 +72,7 @@ > src->yp_public = 0; > > if(mountinfo != NULL) { > - src->fallback_mount = mountinfo->fallback_mount; > + src->fallback_mount = (char *)strdup(mountinfo->fallback_mount); > src->max_listeners = mountinfo->max_listeners; > src->dumpfile...
2004 Aug 06
0
[PATCH] Add per-listener and per-mount connection time limits.
...refbuf_queue_remove(&client->queue); *** src/source.h.orig Sun Jul 20 21:58:54 2003 --- src/source.h Fri Mar 5 13:12:09 2004 *************** *** 38,43 **** --- 38,44 ---- int num_yp_directories; long listeners; long max_listeners; + int max_listener_time; int yp_public; int send_return; } source_t;
2012 Dec 11
2
Adding additional mount info to xsl stylesheet
...416222 100644 --- src/source.h +++ src/source.h @@ -52,6 +52,9 @@ typedef struct source_tag unsigned long peak_listeners; unsigned long listeners; unsigned long prev_listeners; + unsigned long max_listener_duration; + const char * user_agent; + long max_listeners; int yp_public; int fallback_override; diff --git web/status.xsl web/status.xsl index b7049a2..9a46945 100644 --- web/status.xsl +++ web/status.xsl @@ -92,6 +92,24 @@ <xsl:if test="genre"> <tr><td>Stream Genre:</td><td class="streamdata"> <xsl:value-of s...
2004 Aug 06
7
Stream metadata settings
> IMHO, a system like Icecast should be made so highly configurable that it > would fit everyone's needs, but I get the impression that only the needs of > the principal developers are of interest here. It makes me sad to see this, > Icecast could be great instead of just being good. > Melanie, As one of the 'principal developers', I don't think this is fair. Of
2004 Aug 06
2
improved error.log output --diff
...listeners", "%d", listeners); @@ -557,7 +557,7 @@ done: - INFO1("Source \"%s\" exiting", source->mount); + INFO1("Source \"%s\" exiting, %s", source->mount, source->client->con->ip); #ifdef USE_YP if(source->yp_public) { diff -u --recursive icecast/src/util.c icecast-new/src/util.c --- icecast/src/util.c 2003-07-18 16:29:23.000000000 -0400 +++ icecast-new/src/util.c 2003-08-06 19:19:17.000000000 -0400 @@ -293,7 +293,7 @@ done = 1; break; case 0: - ERR...