X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/25bd99451c2620e2c3b50a7d2043774b43c93aaa..cf338ab1be08818ce8f79af1c5501e13e4d199fb:/rsync.h diff --git a/rsync.h b/rsync.h index 9a165071..07f447b1 100644 --- a/rsync.h +++ b/rsync.h @@ -458,11 +458,13 @@ struct file_list { struct file_struct **files; }; +#define SUMFLG_SAME_OFFSET (1<<0) + struct sum_buf { OFF_T offset; /**< offset in file of this chunk */ unsigned int len; /**< length of chunk of file */ - int i; /**< index of this chunk */ uint32 sum1; /**< simple checksum */ + short flags; /**< flag bits */ char sum2[SUM_LENGTH]; /**< checksum */ };