X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/f0fca04e4e136c4a487a922e8fb09acf46aeafa0..e42c9458c2f1e3a78d6d45e99741d6edb38fc0cc:/rsync.h diff --git a/rsync.h b/rsync.h index e2d77453..187ef375 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 "~" @@ -52,8 +51,9 @@ #define WRITE_SIZE (32*1024) #define CHUNK_SIZE (32*1024) #define MAX_MAP_SIZE (4*1024*1024) +#define IO_BUFFER_SIZE (4096) -#define MAX_ARGS 100 +#define MAX_ARGS 1000 #define BLOCKING_TIMEOUT 10 @@ -73,6 +73,7 @@ #include #endif #include +#include #ifdef HAVE_SYS_PARAM_H #include @@ -170,6 +171,10 @@ #include "lib/getopt.h" #endif +#ifdef HAVE_GLOB +#include +#endif + /* these are needed for the uid/gid mapping code */ #include #include @@ -178,6 +183,8 @@ #include #include #include +#include +#include #ifndef S_IFLNK #define S_IFLNK 0120000 @@ -250,6 +257,10 @@ #define MAXPATHLEN 1024 #endif +#ifndef INADDR_NONE +#define INADDR_NONE 0xffffffff +#endif + struct file_struct { unsigned flags; time_t modtime;