diff options
author | Michael Adam <obnox@samba.org> | 2008-03-14 08:49:34 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-03-14 11:32:34 +0100 |
commit | 27517ea5bbd0cb7fb0f1a1d88d8282380f14e717 (patch) | |
tree | 3fe95d253a87aac0f626ddec1a88ef32e41ed4d9 /source3/lib/replace/system/network.h | |
parent | 439002b1c65a1ec94d3199cfc5211cedbe84b8ab (diff) | |
download | samba-27517ea5bbd0cb7fb0f1a1d88d8282380f14e717.tar.gz samba-27517ea5bbd0cb7fb0f1a1d88d8282380f14e717.tar.bz2 samba-27517ea5bbd0cb7fb0f1a1d88d8282380f14e717.zip |
libreplace: add an inet_aton() function that calls inet_pton().
inet_aton() is even needed inside libreplace, in the implementation
of rep_getaddrinfo().
Michael
(cherry picked from commit bcb2f3a880f8da8f9bedb7a8e61d7d7b533f1919)
(This used to be commit 83baff78ce752a9129554a456cc24d043d419cd1)
Diffstat (limited to 'source3/lib/replace/system/network.h')
-rw-r--r-- | source3/lib/replace/system/network.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/lib/replace/system/network.h b/source3/lib/replace/system/network.h index 796df2d1da..e9e770205d 100644 --- a/source3/lib/replace/system/network.h +++ b/source3/lib/replace/system/network.h @@ -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); |