Put the new address family option into an options struct. We have too
[rsync/rsync.git] / rsync.h
diff --git a/rsync.h b/rsync.h
index 5091a9e..9f23119 100644 (file)
--- a/rsync.h
+++ b/rsync.h
@@ -387,7 +387,6 @@ static inline int flist_up(struct file_list *flist, int i)
 }
 
 #include "byteorder.h"
-#include "version.h"
 #include "proto.h"
 #include "lib/mdfour.h"
 
@@ -563,3 +562,8 @@ size_t strlcat(char *d, const char *s, size_t bufsize);
 
 
 extern int verbose;
+
+extern struct global_opts {
+       /** Network address family. **/
+       int af_hint;
+} global_opts;