X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/fd73b94d312491fd3d9d3e38b820f8cb1c53f453..4762db4fc90e0bd0c04c9ba7c50123d378427fd0:/rsync.h?ds=sidebyside diff --git a/rsync.h b/rsync.h index 41e65f9c..a4233b4d 100644 --- a/rsync.h +++ b/rsync.h @@ -85,6 +85,16 @@ #define MPLEX_BASE 7 +#define NO_EXCLUDES 0 +#define SERVER_EXCLUDES 1 +#define ALL_EXCLUDES 2 + +#define MISSING_OK 0 +#define MISSING_FATAL 1 + +#define ADD_INCLUDE 1 +#define ADD_EXCLUDE 0 + /* Log values. I *think* what these mean is: FLOG goes to the server * logfile; FERROR and FINFO try to end up on the client, with * different levels of filtering. */ @@ -424,6 +434,7 @@ struct map_struct { #define MATCHFLG_WILD 0x0001 /* pattern has '*', '[', and/or '?' */ #define MATCHFLG_WILD2 0x0002 /* pattern has '**' */ #define MATCHFLG_WILD2_PREFIX 0x0004 /* pattern starts with '**' */ +#define MATCHFLG_ABS_PATH 0x0008 /* path-match on absolute path */ struct exclude_struct { char *pattern; int match_flags;