search for: use_yp

Displaying 6 results from an estimated 6 matches for "use_yp".

Did you mean: use_p
2019 Feb 03
1
YP listings in version 2.5 beta
Hi, This thread seems to have stalled. Would anyone still be able to help me with this one? I?ve posted my log as requested. Any advice would be a great help. > > Message: 1 > Date: Tue, 29 Jan 2019 20:00:21 +1000 > From: Damian <db76 at riseup.net> > To: icecast at xiph.org > Subject: Re: [Icecast] Icecast Digest, Vol 175, Issue 11 > Message-ID:
2019 Feb 04
1
YP listings in version 2.5 beta
Hi Petr Thanks for taking the time to respond and to try to help. > > > Either you called ./configure with --disable-yp or with --without-curl (see > XIPH_PATH_CURL definitio in m4/xiph_curl.m4) So, I can see this? but what am I looking for exactly? > or your > curl does meet the tested criteria. E.g. You are missing curl header files or > you have too old curl. What
2004 Aug 06
2
libshout2, ices0-3 and ices2 on Win32. Announce
Well...since this is a port to Win32 patches may not make sense. Pathnames to the required libraries are relative, but hardcoded from the point of reference. Without that, it will not build. Since there are lot more files (related to the IDE as well as some project build settings which link to libraries in Win32) which have no close equivalents in the non-Win32 world. Hence can't do patches.
2011 Aug 07
2
Trouble getting in icecast Directory
...1 #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 #define HAVE_INET_PTON 1 #define HAVE_XSLTSAVERESULTTOSTRING 1 #define HAVE_OGG 1 #define HAVE_PTHREAD_SPIN_LOCK 1 #define HAVE_PTHREAD 1 #define HAVE_CURL_CURL_H 1 #define HAVE_CURL 1 #define HAVE_AUTH_URL 1 #define HAVE_CURL_GLOBAL_INIT 1 #define USE_YP 1 ========================== Which says curl is available and YP is selected, the two things I noted were required to support YP interaction. Here is the admin information to see if you can spot a mistake: Global Server Stats admin icemaster at localhost client_connections 5022 client...
2004 Aug 06
0
[PATCH] Add per-listener and per-mount connection time limits.
...+ src->max_listener_time = mountinfo->max_listener_time; } if(src->dumpfilename != NULL) { *************** *** 191,196 **** --- 194,200 ---- refbuf_t *refbuf, *abuf; int data_done; + int client_connect_time; int listeners = 0; #ifdef USE_YP *************** *** 202,207 **** --- 206,214 ---- #endif long queue_limit; + int global_listener_time_limit; + int mount_listener_time_limit; + int listener_time_limit; ice_config_t *config; char *hostname; int port; *************** *** 209,214 **** --- 216,...
2004 Aug 06
2
improved error.log output --diff
...on mountpoint %s changed to \"%s\"", - source->mount, value); + DEBUG2("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->i...