Cope on machines without INADDR_LOOPBACK.
authorMartin Pool <mbp@samba.org>
Fri, 31 Aug 2001 08:22:00 +0000 (08:22 +0000)
committerMartin Pool <mbp@samba.org>
Fri, 31 Aug 2001 08:22:00 +0000 (08:22 +0000)
rsync.h

diff --git a/rsync.h b/rsync.h
index 6a663fe..da891c9 100644 (file)
--- a/rsync.h
+++ b/rsync.h
@@ -486,6 +486,13 @@ extern int errno;
 # define NONBLOCK_FLAG FNDELAY
 #endif
 
+#ifndef INADDR_LOOPBACK
+#define INADDR_LOOPBACK 0x7f000001
+#endif
+
+#ifndef INADDR_NONE
+#define INADDR_NONE 0xffffffff
+#endif
 
 #define IS_DEVICE(mode) (S_ISCHR(mode) || S_ISBLK(mode) || S_ISSOCK(mode) || S_ISFIFO(mode))