X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/daa8d920942f064b68f913eeb87da28753dc203a..d4d56eed8a2dfdd2cd78a19f9c1bae02496427e3:/rsync.h diff --git a/rsync.h b/rsync.h index 7eb9a807..b000d96e 100644 --- a/rsync.h +++ b/rsync.h @@ -96,7 +96,7 @@ /* This is used when working on a new protocol version in CVS, and should * be a new non-zero value for each CVS change that affects the protocol. * It must ALWAYS be 0 when the protocol goes final (and NEVER before)! */ -#define SUBPROTOCOL_VERSION 1 +#define SUBPROTOCOL_VERSION 2 /* We refuse to interoperate with versions that are not in this range. * Note that we assume we'll work with later versions: the onus is on @@ -828,12 +828,23 @@ struct stats { int64 flist_buildtime; int64 flist_xfertime; int64 flist_size; - int num_files; - int num_transferred_files; + int num_files, num_dirs, num_symlinks, num_devices, num_specials; + int created_files, created_dirs, created_symlinks, created_devices, created_specials; + int deleted_files, deleted_dirs, deleted_symlinks, deleted_devices, deleted_specials; + int xferred_files; }; struct chmod_mode_struct; +struct flist_ndx_item { + struct flist_ndx_item *next; + int ndx; +}; + +typedef struct { + struct flist_ndx_item *head, *tail; +} flist_ndx_list; + #define EMPTY_ITEM_LIST {NULL, 0, 0} typedef struct { @@ -1160,7 +1171,8 @@ extern short info_levels[], debug_levels[]; #define DEBUG_FLIST (DEBUG_FILTER+1) #define DEBUG_FUZZY (DEBUG_FLIST+1) #define DEBUG_GENR (DEBUG_FUZZY+1) -#define DEBUG_HLINK (DEBUG_GENR+1) +#define DEBUG_HASH (DEBUG_GENR+1) +#define DEBUG_HLINK (DEBUG_HASH+1) #define DEBUG_ICONV (DEBUG_HLINK+1) #define DEBUG_OWN (DEBUG_ICONV+1) #define DEBUG_PROTO (DEBUG_OWN+1)