X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/f0fca04e4e136c4a487a922e8fb09acf46aeafa0..4c3d16be50ebe52e51383e396a641448c4ba00c0:/rsync.h diff --git a/rsync.h b/rsync.h index e2d77453..13116707 100644 --- a/rsync.h +++ b/rsync.h @@ -22,7 +22,6 @@ #define RSYNC_NAME "rsync" #define RSYNCD_CONF "/etc/rsyncd.conf" -#define RSYNCD_LOG "/var/adm/rsyncd.log" #define BACKUP_SUFFIX "~" @@ -53,7 +52,7 @@ #define CHUNK_SIZE (32*1024) #define MAX_MAP_SIZE (4*1024*1024) -#define MAX_ARGS 100 +#define MAX_ARGS 1000 #define BLOCKING_TIMEOUT 10 @@ -73,6 +72,7 @@ #include #endif #include +#include #ifdef HAVE_SYS_PARAM_H #include @@ -170,6 +170,10 @@ #include "lib/getopt.h" #endif +#ifdef HAVE_GLOB +#include +#endif + /* these are needed for the uid/gid mapping code */ #include #include @@ -178,6 +182,8 @@ #include #include #include +#include +#include #ifndef S_IFLNK #define S_IFLNK 0120000 @@ -250,6 +256,10 @@ #define MAXPATHLEN 1024 #endif +#ifndef INADDR_NONE +#define INADDR_NONE 0xffffffff +#endif + struct file_struct { unsigned flags; time_t modtime;