X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/5b6281afcfebcc07b1db3a774671a4e129909feb..8ad5cea371a004d9b52194d073208d2f269462c0:/rsync.h diff --git a/rsync.h b/rsync.h index b0ca2385..5a86d083 100644 --- a/rsync.h +++ b/rsync.h @@ -103,8 +103,8 @@ #define IOERR_DEL_LIMIT (1<<2) #define MAX_ARGS 1000 - #define MAX_BASIS_DIRS 20 +#define MAX_SERVER_ARGS (MAX_BASIS_DIRS*2 + 100) #define MPLEX_BASE 7 @@ -463,6 +463,14 @@ struct idev { #define MAXPATHLEN 1024 #endif +/* We want a roomy line buffer that can hold more than MAXPATHLEN, + * and significantly more than an overly short MAXPATHLEN. */ +#if MAXPATHLEN < 4096 +#define BIGPATHBUFLEN (4096+1024) +#else +#define BIGPATHBUFLEN (MAXPATHLEN+1024) +#endif + #ifndef NAME_MAX #define NAME_MAX 255 #endif