search for: command_stats

Displaying 3 results from an estimated 3 matches for "command_stats".

2004 Aug 06
2
RE: Problems Listening in WinAmp 2.x, 5.x
I have set up icecast2 and ices2 and am playing ogg files from a playlist. I can listen to stream in Linux using XMMS and Windows using FOOBAR2000. The documentation indicates that WinAmp 2.x and 5.x will work, but need to do tricks like use mountname with ".ogg" extension. When I do that in WinAmp 2.x and 5.x tries to connect and nothing. When in Admin in icecast, and view stats to
2013 Apr 11
0
No subject
...src/admin.c (working copy) @@ -39,6 +39,9 @@ #include "logging.h" #include "auth.h" + +#include "valgrind/memcheck.h" + #ifdef _WIN32 #define snprintf _snprintf #endif @@ -470,9 +473,11 @@ break; case COMMAND_TRANSFORMED_STATS: command_stats(client, NULL, TRANSFORMED); + VALGRIND_DO_LEAK_CHECK; break; case COMMAND_TRANSFORMED_LIST_MOUNTS: command_list_mounts(client, TRANSFORMED); + VALGRIND_DO_ADDED_LEAK_CHECK; break; case COMMAND_TRANSFORMED_LISTSTREAM:...
2004 Aug 06
2
improved error.log output --diff
...BUG2("Metadata on mountpoint %s changed to \"%s\", %s", + source->mount, value, client->con->ip); stats_event(source->mount, "title", value); #ifdef USE_YP /* If we get an update on the mountpoint, force a @@ -653,7 +653,7 @@ static void command_stats(client_t *client, int response) { xmlDocPtr doc; - DEBUG0("Stats request, sending xml stats"); + DEBUG0("Stats request, sending xml stats, %s", client->con->ip); stats_get_xml(&doc); admin_send_response(doc, client, response, STATS_TRANSFORMED_...