X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/a5f9cff25633e7839f173b889a4782297054cbd7..4c4266d9c9530fc051a0506f915761bcc9f8c3c6:/rsync.h diff --git a/rsync.h b/rsync.h index d46fbb74..1d915c7d 100644 --- a/rsync.h +++ b/rsync.h @@ -58,6 +58,7 @@ #define FLAG_TOP_DIR (1<<0) #define FLAG_HLINK_EOL (1<<1) /* generator only */ +#define FLAG_MOUNT_POINT (1<<2) /* sender only */ /* update this if you make incompatible changes */ #define PROTOCOL_VERSION 28 @@ -111,6 +112,9 @@ #define FULL_FLUSH 1 #define NORMAL_FLUSH 0 +#define CLEAR_STRUCT 0 +#define FREE_STRUCT 1 + /* Log-message categories. FLOG is only used on the daemon side to * output messages to the log file. */ enum logcode { FERROR=1, FINFO=2, FLOG=3 }; @@ -421,7 +425,7 @@ struct file_struct { char *basedir; uid_t uid; gid_t gid; - uchar flags; + uchar flags; /* this item MUST remain last */ }; #define ARENA_SIZE (32 * 1024)