search for: server_filter_list

Displaying 4 results from an estimated 4 matches for "server_filter_list".

2005 Jan 31
1
[patch] add "--ignore" option
...(char *fname, int is_dir, int filter_level) +static enum matchtype is_excluded(char *fname, int is_dir, int filter_level) { + enum matchtype r; #if 0 /* This currently never happens, so avoid a useless compare. */ if (filter_level == NO_FILTERS) return 0; @@ -241,14 +242,19 @@ } } if (server_filter_list.head - && check_filter(&server_filter_list, fname, is_dir) < 0) - return 1; - if (filter_level != ALL_FILTERS) - return 0; + && (r = check_filter(&server_filter_list, fname, is_dir)) != M_NOMATCH) + return r; +// if (filter_level != ALL_FILTERS) +// return M_N...
2008 Mar 19
0
[PATCH] Unsnarl missing_below/dry_run logic.
...s |= FLAG_MISSING_DIR; #ifdef SUPPORT_HARD_LINKS - if (F_IS_HLINKED(file)) - handle_skipped_hlink(file, itemizing, code, f_out); + else if (F_IS_HLINKED(file)) + handle_skipped_hlink(file, itemizing, code, f_out); #endif - return; - } - } + return; + } else + skip_dir = NULL; if (server_filter_list.head) { if (check_filter(&server_filter_list, fname, is_dir) < 0) { @@ -1298,7 +1302,8 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx, #ifdef SUPPORT_XATTRS sx.xattr = NULL; #endif - if (dry_run > 1) { + if (dry_run > 1 || (dry_missing_dir &&amp...
2005 Nov 01
2
request: add TCP buffer options to rsync CLI?
Dear rsync folks, I'd like to request/suggest that cli options to set TCP send/receive buffers be added to rsync client-side. Summary: I'm aware that a daemon's config-file can set socket options for the server side (e.g. SO_SNDBUF, SO_RCVBUF). That is useful. But when trying to get high-throughput rsync over long paths (i.e. large bandwidth*delay product), since
2007 Sep 22
0
rsync build on IA64 using icc
...ern int backup_suffix_len; ^ generator.c(93): remark #1419: external declaration in primary source file extern struct file_list *the_file_list; ^ generator.c(94): remark #1419: external declaration in primary source file extern struct filter_list_struct server_filter_list; ^ generator.c(141): remark #981: operands are evaluated in unspecified order full_fname(fname)); ^ generator.c(140): remark #981: operands are evaluated in unspecified order rsyserr(FERROR, errno, "delete_file: unlink %s failed", ^...