From a6d89d18bf3bd5da8aad3cb4d6f96246aceb2788 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Thu, 8 Jan 2004 11:28:07 +0000 Subject: [PATCH] - Added flags HAS_INODE_DATA and SAME_DEV. - Changed PROTOCOL_VERSION to 28 now. --- rsync.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rsync.h b/rsync.h index e68423b7..30ab1908 100644 --- a/rsync.h +++ b/rsync.h @@ -51,9 +51,11 @@ #define LONG_NAME (1<<6) #define SAME_TIME (1<<7) #define SAME_HIGH_RDEV (1<<8) +#define HAS_INODE_DATA (1<<9) +#define SAME_DEV (1<<10) /* update this if you make incompatible changes */ -#define PROTOCOL_VERSION 27 +#define PROTOCOL_VERSION 28 /* 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 -- 2.34.1