summaryrefslogtreecommitdiff
path: root/source3/lib/replace/replace.h
diff options
context:
space:
mode:
authormetze <metze@0c0555d6-39d7-0310-84fc-f1cc0bd64818>2007-10-10 12:09:06 +0000
committerStefan Metzmacher <metze@samba.org>2007-10-15 13:19:28 +0200
commit804396dce9112361c0e19ad2e15b9bb8dd23c378 (patch)
tree1676cc74c8d210d374e9c1ebe07c172593062912 /source3/lib/replace/replace.h
parentd3a7f49c6f68e740aa42b586efd687c840f963ff (diff)
downloadsamba-804396dce9112361c0e19ad2e15b9bb8dd23c378.tar.gz
samba-804396dce9112361c0e19ad2e15b9bb8dd23c378.tar.bz2
samba-804396dce9112361c0e19ad2e15b9bb8dd23c378.zip
don't imply "system/network.h" within replace.h,
as this brings in the socket_wrapper.h in unexpected code and we endup with a missing 'swrap_close' while linking metze git-svn-id: svn+ssh://svn.samba.org/data/svn/samba/branches/SAMBA_4_0@25602 0c0555d6-39d7-0310-84fc-f1cc0bd64818 (This used to be commit ec8e3f7f92522c65ec472058321db8a7ac30ec4c)
Diffstat (limited to 'source3/lib/replace/replace.h')
-rw-r--r--source3/lib/replace/replace.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/source3/lib/replace/replace.h b/source3/lib/replace/replace.h
index 3dc10db59f..45902657a2 100644
--- a/source3/lib/replace/replace.h
+++ b/source3/lib/replace/replace.h
@@ -326,15 +326,19 @@ ssize_t rep_pread(int __fd, void *__buf, size_t __nbytes, off_t __offset);
ssize_t rep_pwrite(int __fd, const void *__buf, size_t __nbytes, off_t __offset);
#endif
+#ifdef REPLACE_INET_NTOA
+#define inet_ntoa rep_inet_ntoa
+/* prototype is in "system/network.h" */
+#endif
+
#ifndef HAVE_INET_PTON
-int rep_inet_pton(int af, const char *src, void *dst);
#define inet_pton rep_inet_pton
+/* prototype is in "system/network.h" */
#endif
#ifndef HAVE_INET_NTOP
-#include "system/network.h"
-const char *rep_inet_ntop(int af, const void *src, char *dst, socklen_t size);
#define inet_ntop rep_inet_ntop
+/* prototype is in "system/network.h" */
#endif
#ifdef HAVE_LIMITS_H