libreplace: add an inet_aton() function that calls inet_pton().
[gd/samba/.git] / source / lib / replace / system / network.h
index 410c6d7cca2904d12e738c470cc90a6cc581a5ac..8c606c8f2da457ffded8c599c70c5e5aae170be0 100644 (file)
@@ -103,6 +103,11 @@ int rep_inet_pton(int af, const char *src, void *dst);
 const char *rep_inet_ntop(int af, const void *src, char *dst, socklen_t size);
 #endif
 
+#ifndef HAVE_INET_ATON
+/* define is in "replace.h" */
+int rep_inet_aton(const char *src, struct in_addr *dst);
+#endif
+
 #ifndef HAVE_CONNECT
 /* define is in "replace.h" */
 int rep_connect(int sockfd, const struct sockaddr *addr, socklen_t addrlen);