X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/304d7b5817d6e1d3cf59b9edae2213433d901cdc..794f2cbab329127272a3f0aca96098618144f5d2:/rsync.h diff --git a/rsync.h b/rsync.h index abdb6e02..1cf7c6e0 100644 --- a/rsync.h +++ b/rsync.h @@ -136,6 +136,8 @@ /* For compatibility with older rsyncs */ #define OLD_MAX_BLOCK_SIZE ((int32)1 << 29) +#define ROUND_UP_1024(siz) ((siz) & (1024-1) ? ((siz) | (1024-1)) + 1 : (siz)) + #define IOERR_GENERAL (1<<0) /* For backward compatibility, this must == 1 */ #define IOERR_VANISHED (1<<1) #define IOERR_DEL_LIMIT (1<<2) @@ -232,7 +234,7 @@ enum msgcode { MSG_STATS=10, /* message has stats data for generator */ MSG_IO_ERROR=22,/* the sending side had an I/O error */ MSG_IO_TIMEOUT=33,/* tell client about a daemon's timeout value */ - MSG_NOOP=42, /* a do-nothing message */ + MSG_NOOP=42, /* a do-nothing message (legacy protocol-30 only) */ MSG_ERROR_EXIT=86, /* used by siblings and by protocol-31 */ MSG_SUCCESS=100,/* successfully updated indicated flist index */ MSG_DELETED=101,/* successfully deleted a file on receiving side */