Displaying 3 results from an estimated 3 matches for "httpp_var_error_message".
2004 Aug 06
2
Error compiling icecast2
..../avl -I./httpp -I./log -I./timing -g -O20 -ffast-math
-fsigned-char
-D_REENTRANT -D_GNU_SOURCE -I/usr/include/libxml2/libxml
-I/usr/include/libxml2
-I/usr/include/libxml2/libxml -I/usr/include/libxml2 -I/include -I/include
-c slave.c
slave.c: In function `_slave_thread':
slave.c:128: `HTTPP_VAR_ERROR_MESSAGE' undeclared (first use in this
function)
slave.c:128: (Each undeclared identifier is reported only once
slave.c:128: for each function it appears in.)
make[2]: *** [slave.o] Error 1
make[2]: Leaving directory `/usr/usr2/friends/geoff/icecast/src'
make[1]: *** [all-recursive] Error 1
make[1]...
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
2004 Aug 06
2
improved error.log output --diff
...ed");
+ WARN0("Header read failed, %s", con->ip);
connection_close(con);
return;
}
@@ -117,11 +117,11 @@
httpp_initialize(parser, NULL);
if(!httpp_parse_response(parser, header, strlen(header), localmount)) {
if(httpp_getvar(parser, HTTPP_VAR_ERROR_MESSAGE)) {
- ERROR1("Error parsing relay request: %s",
- httpp_getvar(parser, HTTPP_VAR_ERROR_MESSAGE));
+ ERROR1("Error parsing relay request: %s, %s",
+ httpp_getvar(parser, HTTPP_VAR_ERROR_MESSAGE), con->ip);...