search for: stats_event_args

Displaying 5 results from an estimated 5 matches for "stats_event_args".

2004 Aug 06
1
bug in cvs version of icecast2?
...out that icecast will crash when trying to stream a title or artist with % in the name. The cause seems to be in stats.c, line 158 where the text is sent as a format string to vsnprintf. This could possibly be used for an exploit too. The solution I came up with is to call stats_event instead of stats_event_args from format_vorbis_get_buffer in format_vorbis.c. I've included a patch below. /Emil Index: format_vorbis.c =================================================================== RCS file: /usr/local/cvsroot/icecast/src/format_vorbis.c,v retrieving revision 1.6 diff -r1.6 format_vorbis....
2012 Dec 11
2
Adding additional mount info to xsl stylesheet
...like the acl, etc. when the source is disconnected, when servicing queries, or otherwise? BEGIN icecast-2.3.2-moremntinfo.patch diff --git src/source.c src/source.c index 02bfc74..7e90d34 100644 --- src/source.c +++ src/source.c @@ -614,6 +614,10 @@ static void source_init (source_t *source) stats_event_args (source->mount, "listeners", "%lu", source->listeners); stats_event_args (source->mount, "listener_peak", "%lu", source->peak_listeners); stats_event_time (source->mount, "stream_start"); + stats_event_args (source->mo...
2005 Aug 21
3
Icecast 2.3 RC1 Announcement
Ok folks, we are getting ready for version 2.3 of icecast and have built an RC1 distribution. We encourage everyone to try out this new release and provide us feedback. Please report all bugs to http://bugs.xiph.org Here are the details : Source Distribution: http://downloads.xiph.org/releases/icecast/icecast-2.3.0.rc1.tar.gz Source RPM:
2005 Aug 21
3
Icecast 2.3 RC1 Announcement
Ok folks, we are getting ready for version 2.3 of icecast and have built an RC1 distribution. We encourage everyone to try out this new release and provide us feedback. Please report all bugs to http://bugs.xiph.org Here are the details : Source Distribution: http://downloads.xiph.org/releases/icecast/icecast-2.3.0.rc1.tar.gz Source RPM:
2004 Aug 06
2
improved error.log output --diff
...UG0("Client has fallen too far behind, removing"); + DEBUG0("Client has fallen too far behind, removing, %s", client->con->ip); client->con->error = 1; } @@ -510,7 +510,7 @@ listeners--; stats_event_args(source->mount, "listeners", "%d", listeners); source->listeners = listeners; - DEBUG0("Client removed"); + DEBUG0("Client removed, %s", source->mount); continue; }...