Displaying 3 results from an estimated 3 matches for "warn0".
Did you mean:
warn
2004 Aug 06
2
improved error.log output --diff
...ing);
+ "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");
return;
}
@@ -357,7 +357,7 @@
command_kill_sou...
2010 Jul 30
33
[PATCHES] Smartjog PatchDump
Hello,
I work at SmarctJog.com, we have here some patches on IceCast for
performance and reliability, these are mostly client/connection/source
cleanups (a slave merge is underway, and some more good stuff (c)),
but we'd like this to be merged in before the list gets any longer.
Please find attached a list of our patches with a short desc:
This one is actually not from us/me, it was found
2006 Sep 24
1
Add-on patch to support .pls .asx .ram .qtl listing formats
...command_buildasx(client, source, RAW);
+ break;
+ case COMMAND_BUILDRAM:
+ command_buildram(client, source, RAW);
+ break;
+ case COMMAND_BUILDQTL:
+ command_buildqtl(client, source, RAW);
+ break;
default:
WARN0("Mount request not recognised");
client_send_400(client, "Mount request unknown");
@@ -703,6 +741,138 @@
}
+static void command_buildpls(client_t *client, source_t *source,
+ int response)
+{
+ char *username = NULL;
+ char *password = NULL;
+ ice_c...