Displaying 7 results from an estimated 7 matches for "command_list_mounts".
2013 Apr 11
0
No subject
...ef _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:
command_list_mounts(client, TRANSFORMED);
--------------030404050401010800010508--
2004 Aug 06
1
Funky password mount point error for liveice and icecast - PLZ HL P!
...31] INFO connection/_handle_source_request Source (/)
attempted to login with invalid or missing password
[2004-02-14 09:40:23] DBUG connection/_handle_get_request Client connected
[2004-02-14 09:40:23] DBUG admin/admin_handle_request Got command
(listmounts.xsl)
[2004-02-14 09:40:23] DBUG admin/command_list_mounts List mounts request
[2004-02-14 09:40:23] DBUG admin/admin_send_response Sending XSLT
(/share/icecast/admin/listmounts.xsl)
My access.log contains
192.168.1.21 - - [14/Feb/2004:09:26:57 +0000] "SOURCE / ICY/666" 401 115 "-"
"-" 0
192.168.1.21 - - [14/Feb/2004:09...
2019 Dec 22
4
Kicking duplicate connections
Hello fellow mailing list readers,
My question relates to multiple / duplicate connections to the ice cast server from the same IP address.
I am well aware that this is an issue that lies with the music player (listener agent) used by the listener. When a listener connects to the stream, sometimes it appears as two connections to the stream from the same IP address. This may last only a few
2020 Oct 14
0
meaning of global connections and global client_connections in error log
...ctions (3)
[2020-10-14 12:11:58] DBUG stats/modify_node_event update global
clients (1)
[2020-10-14 12:11:59] DBUG admin/admin_handle_request Admin request
(/admin/listmounts.xsl)
[2020-10-14 12:11:59] DBUG admin/admin_handle_request Got command
(listmounts.xsl)
[2020-10-14 12:11:59] DBUG admin/command_list_mounts List mounts
request
[2020-10-14 12:11:59] DBUG admin/admin_send_response Sending XSLT
(/usr/share/icecast2/admin/listmounts.xsl)
[2020-10-14 12:11:59] DBUG fserve/fserve_add_client Adding client to
file serving engine
[2020-10-14 12:11:59] DBUG fserve/fserve_add_pending fserve handler
waking up...
2004 Aug 06
2
[FWD: Unable to login to icecast with liveice???]
...31] INFO connection/_handle_source_request Source (/) attempted to login with invalid or missing password
[2004-02-14 09:40:23] DBUG connection/_handle_get_request Client connected
[2004-02-14 09:40:23] DBUG admin/admin_handle_request Got command (listmounts.xsl)
[2004-02-14 09:40:23] DBUG admin/command_list_mounts List mounts request
[2004-02-14 09:40:23] DBUG admin/admin_send_response Sending XSLT (/share/icecast/admin/listmounts.xsl)
<p>My access.log contains
192.168.1.21 - - [14/Feb/2004:09:26:57 +0000] "SOURCE / ICY/666" 401 115 "-" "-" 0
192.168.1.21 - - [14/Feb/2...
2004 Aug 06
2
[FWD: Unable to login to icecast with liveice???]
...31] INFO connection/_handle_source_request Source (/) attempted to login with invalid or missing password
[2004-02-14 09:40:23] DBUG connection/_handle_get_request Client connected
[2004-02-14 09:40:23] DBUG admin/admin_handle_request Got command (listmounts.xsl)
[2004-02-14 09:40:23] DBUG admin/command_list_mounts List mounts request
[2004-02-14 09:40:23] DBUG admin/admin_send_response Sending XSLT (/share/icecast/admin/listmounts.xsl)
<p>My access.log contains
192.168.1.21 - - [14/Feb/2004:09:26:57 +0000] "SOURCE / ICY/666" 401 115 "-" "-" 0
192.168.1.21 - - [14/Feb/2...
2004 Aug 06
2
improved error.log output --diff
...ord on admin command "
- "request (command: %s)", command_string);
+ "request (command: %s), %s", command_string, client->con->ip);
client_send_401(client);
return;
}
@@ -313,7 +313,7 @@
command_list_mounts(client, TRANSFORMED);
break;
default:
- WARN0("General admin request not recognised");
+ WARN0("General admin request not recognised,, %s", client->con->ip);
client_send_400(client, "Unknown admin request")...