search for: find_fuzzy

Displaying 3 results from an estimated 3 matches for "find_fuzzy".

2009 Dec 21
1
File list and find_fuzzy() insights for algo fiddling
Hi! I read the source around find_fuzzy(), but got stuck in get_dirlist(). I thought the latter returns the subset of the current ?global? file list of the receiver side (which is complete, or an incremental part(?)), reduced to the ?same directory? restriction. Can someone enlighten me, where the ?global file list? is stored? Is that a...
2009 May 14
3
--fuzzy question
...ly slightly larger in size, but the containing directory is exactly the same. I was hoping to use --fuzzy and --delete-after, but it doesn't seem to be speeding up the transfer. I am assuming that this is because I have both a change in name AND a change is size/modtime? I was looking into the find_fuzzy function, but i'm not sure if there's anything I can tweak in there to make this work. Thanks for any help Julian -------------- next part -------------- HTML attachment scrubbed and removed
2008 Mar 19
0
[PATCH] Unsnarl missing_below/dry_run logic.
...l_sx.st.st_dev); goto cleanup; } @@ -1729,7 +1731,7 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx, } else partialptr = NULL; - if (statret != 0 && fuzzy_dirlist && dry_run <= 1) { + if (statret != 0 && fuzzy_dirlist) { int j = find_fuzzy(file, fuzzy_dirlist); if (j >= 0) { fuzzy_file = fuzzy_dirlist->files[j]; @@ -2125,6 +2127,7 @@ void generate_files(int f_out, const char *local_name) lull_mod = allowed_lull * 5; symlink_timeset_failed_flags = ITEM_REPORT_TIME | (protocol_version >= 30 || !am_server ? ITE...