X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/e3fe383aaa360a0226f81ae67467addfe2bf29d5..704f908eae2008475e3aba005331e69c98c52234:/rsync.h diff --git a/rsync.h b/rsync.h index 2964dc10..41f480ec 100644 --- a/rsync.h +++ b/rsync.h @@ -280,9 +280,9 @@ struct file_struct { }; struct file_list { - int count; - int malloced; - struct file_struct **files; + int count; + int malloced; + struct file_struct **files; }; struct sum_buf { @@ -316,6 +316,18 @@ struct exclude_struct { int local; }; +struct stats { + int64 total_size; + int64 total_transferred_size; + int64 total_written; + int64 total_read; + int64 literal_data; + int64 matched_data; + int flist_size; + int num_files; + int num_transferred_files; +}; + /* we need this function because of the silly way in which duplicate entries are handled in the file lists - we can't change this