Add Paul Vixie's implementation of inet_ntop and inet_pton for
[rsync/rsync.git] / rsync.h
diff --git a/rsync.h b/rsync.h
index 9f23119..e02ebf3 100644 (file)
--- a/rsync.h
+++ b/rsync.h
@@ -567,3 +567,13 @@ extern struct global_opts {
        /** Network address family. **/
        int af_hint;
 } 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