search for: num_transferred_fil

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

Did you mean: num_transferred_files
2004 Jan 13
3
Progress reporting: N more to check
...e = diff ? (double) (ofs-start_ofs) * 1000.0 / diff / 1024.0 : 0; @@ -72,10 +74,16 @@ static void rprint_progress(OFF_T ofs, O remain_m = (int) (remain / 60.0) % 60; remain_h = (int) (remain / 3600.0); + if (is_last) { + int todo = stats.num_files - stats.num_untransferred_files + - stats.num_transferred_files; + snprintf(eol, sizeof eol, " (#%d; %d more to check)\n", + stats.num_transferred_files, todo); + } else + strcpy(eol, "\r"); rprintf(FINFO, "%12.0f %3d%% %7.2f%s %4d:%02d:%02d%s", (double) ofs, pct, rate, units, - remain_h, remain_m, remain_s, - is_last...
2007 Feb 07
3
Redirect --stats to STDERR.
...,/ /+ rprintf(FERROR,"Number of files: %d\n", stats.num_files);/ /+ rprintf(FERROR,"Number of files transferred: %d\n",/ / stats.num_transferred_files);/ /- rprintf(FINFO,"Total file size: %s bytes\n",/ /+ rprintf(FERROR,"Total file size: %s bytes\n",/ / human_num(stats.total_...
2004 Sep 03
1
more filelist --stats
...ndrew Tridgell 1996, 2000 Copyright (C) Paul Mackerras 1996 Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org> @@ -520,6 +521,8 @@ int64 literal_data; int64 matched_data; int flist_size; + time_t flist_buildtime; + time_t flist_xfertime; int num_files; int num_transferred_files; int current_file_index;
2004 Feb 09
1
[patch] Add `--link-by-hash' option.
...c (MD4_SUM_LENGTH); + } +#endif + recv_ok = receive_data(f_in,buf,fd2,fname,file->length,file->sum); log_recv(file, &initial_stats); patchwork diff rsync.h --- rsync.h 2004-02-09 15:42:40.000000000 -0500 +++ rsync.h 2004-02-09 15:42:40.000000000 -0500 @@ -453,6 +453,13 @@ int num_transferred_files; }; +struct hashfile_struct { + struct hashfile_struct *next; + struct hashfile_struct *prev; + char *name; + int fd; +}; + /* we need this function because of the silly way in which duplicate entries are handled in the file lists - we can't change this patchwork diff hashlink.c ---...