search for: dir_list

Displaying 5 results from an estimated 5 matches for "dir_list".

2002 Jun 18
3
FINDNEXT problem, w2k and linux smbfs
I have inconsistent directory listing on share mounted on linux from windows 2k. Some time not all files appear in the directory listing. If reading directory listing multiple times (60-200 times) files listed originally would have one or two files missing in one of consecutive lists. The same problem appear as well if you are making backup of Windows files from multiple directories, there are
2018 Jun 28
1
[Bug 13492] New: report modified dir when using iconv
...ouched. It looks like it syncs correctly because after a sync with --iconv, I have no dir reported touched anymore. I compiled myself version 3.1.3 for my mac (high sierra). I tried to fix. So far I'm wondering if it's because "need_unsorted_flist" is 1 when --iconv is used, but dir_list global var only keep sorted list. Not sure... -- You are receiving this mail because: You are the QA Contact for the bug.
2004 Aug 06
0
[RFC] RTP support
...char *hostname; int port; + int rtp_port; + int rtp_ttl; + int rtp_ip; listener_t listeners[MAX_LISTEN_SOCKETS]; --- icecast2-1.9+2.0alphasnap2+20030802.orig/src/cfgfile.c +++ icecast2-1.9+2.0alphasnap2+20030802/src/cfgfile.c @@ -282,6 +282,9 @@ configuration->dir_list = NULL; configuration->hostname = CONFIG_DEFAULT_HOSTNAME; configuration->port = 0; + configuration->rtp_port = 8000; + configuration->rtp_ttl = 1; + configuration->rtp_ip = 0; configuration->listeners[0].port = 0; configuration->listeners[0].bind_a...
2004 Aug 06
6
[PATCH] Icecast2 - chroot, setuid/gid...
Hi all again... I did a chroot patch with ability to change uid and gid. I dunno if you all approve with the current implementation but the patch is small and it works here. remember to CC, since i'm not on this ml... //Ian Kumlien PS. To anyone on vorbis-dev, I'm *REALLY* sorry must be tired or something.. =) DS. <p><p><p> -------------- next part -------------- A
2004 Aug 06
1
[PATCH] IceCast2 - aliasing (reimplementation of the patch I posted earlier)
...ounts_lock)); + alias = c->aliases; + while(alias) { + nextalias = alias->next; + xmlFree(alias->source); + xmlFree(alias->destination); + xmlFree(alias->bind_address); + free(alias); + alias = nextalias; + } + dirnode = c->dir_list; while(dirnode) { nextdirnode = dirnode->next; @@ -423,6 +434,7 @@ configuration->mounts = mount; mount->max_listeners = -1; + mount->next = NULL; do { if (node == NULL) break; @@ -474,6 +486,8 @@ else configuration->rela...