X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/a358449ab17f4e3c400d2a96acc900cfd0022f95..a538066d5acd059903cff5103d944cad1fb5c7b2:/rsync.h diff --git a/rsync.h b/rsync.h index c634bc39..191ea5e4 100644 --- a/rsync.h +++ b/rsync.h @@ -389,7 +389,7 @@ static inline int flist_up(struct file_list *flist, int i) #include "byteorder.h" #include "proto.h" #include "lib/mdfour.h" - +#include "lib/permstring.h" /* We have replacement versions of these if they're missing. */ #ifndef HAVE_ASPRINTF @@ -562,3 +562,23 @@ size_t strlcat(char *d, const char *s, size_t bufsize); extern int verbose; + +extern struct global_opts { + /** Network address family. **/ + int af_hint; + + /** Do not go into the background when run as --daemon. Good + * for debugging and required for running as a service on W32, + * or under Unix process-monitors. **/ + int no_detach; +} global_opts; + + +#ifndef HAVE_INET_NTOP +const char * +inet_ntop(int af, const void *src, char *dst, size_t size); +#endif /* !HAVE_INET_NTOP */ + +#ifndef HAVE_INET_PTON +int isc_net_pton(int af, const char *src, void *dst); +#endif