1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00

create /icy_0 (and incrementing numbers) for incoming icy protocol connections

if the / mountpoint is taken

svn path=/trunk/icecast/; revision=4445
This commit is contained in:
Michael Smith 2003-03-08 05:02:13 +00:00
parent b2b618c62f
commit e921a67bd1

View File

@ -872,7 +872,18 @@ static void *_handle_connection(void *arg)
}
else if(httpp_parse_icy(parser, header, strlen(header))) {
/* TODO: Map incoming icy connections to /icy_0, etc. */
_handle_source_request(con, parser, "/");
char mount[20];
int i = 0;
strcpy(mount, "/");
avl_tree_rlock(global.source_tree);
while(source_find_mount(mount) != NULL) {
sprintf(mount, "/icy_%d", i++);
}
avl_tree_unlock(global.source_tree);
_handle_source_request(con, parser, mount);
}
else {
ERROR0("HTTP request parsing failed");