X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/5a788adec19043d4d93c4fa2713f9f633bfd35ab..b86f0cefa23fff464bb68f53b76523cf8ce26436:/rsync.h diff --git a/rsync.h b/rsync.h index 53b1c318..d24cdf79 100644 --- a/rsync.h +++ b/rsync.h @@ -23,6 +23,7 @@ #define RSYNC_NAME "rsync" #define RSYNCD_CONF "/etc/rsyncd.conf" +#define DEFAULT_LOCK_FILE "/var/run/rsyncd.lock" #define URL_PREFIX "rsync://" #define BACKUP_SUFFIX "~" @@ -52,7 +53,7 @@ #define SPARSE_WRITE_SIZE (1024) #define WRITE_SIZE (32*1024) #define CHUNK_SIZE (32*1024) -#define MAX_MAP_SIZE (1*1024*1024) +#define MAX_MAP_SIZE (256*1024) #define IO_BUFFER_SIZE (4092) #define MAX_READ_BUFFER (1024*1024) @@ -148,11 +149,6 @@ #endif #include -#if defined(HAVE_MMAP) && defined(HAVE_MUNMAP) -#include -#define USE_MMAP 1 -#endif - #ifdef HAVE_UTIME_H #include #endif @@ -303,6 +299,7 @@ struct file_struct { char *sum; }; + struct file_list { int count; int malloced; @@ -326,9 +323,9 @@ struct sum_struct { }; struct map_struct { - char *map,*p; + char *p; int fd,p_size,p_len; - OFF_T size, p_offset; + OFF_T file_size, p_offset, p_fd_offset; }; struct exclude_struct { @@ -484,3 +481,4 @@ size_t strlcpy(char *d, const char *s, size_t bufsize); size_t strlcat(char *d, const char *s, size_t bufsize); #endif +#define exit_cleanup(code) _exit_cleanup(code, __FILE__, __LINE__)