X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/b2bffbb2ca73c65175d6ceb4303a59ccc38c0307..a85906c75683de95a8a999552822fd86870ab2b7:/rsync.h diff --git a/rsync.h b/rsync.h index 61e5f06b..15066258 100644 --- a/rsync.h +++ b/rsync.h @@ -428,7 +428,12 @@ struct file_struct { uchar flags; /* this item MUST remain last */ }; -#define ARENA_SIZE (32 * 1024) +/* + * Start the flist array at FLIST_START entries and grow it + * by doubling until FLIST_LINEAR then grow by FLIST_LINEAR + */ +#define FLIST_START (32 * 1024) +#define FLIST_LINEAR (FLIST_START * 512) struct string_area { char *base;