summaryrefslogtreecommitdiff
path: root/source3/lib/replace/getaddrinfo.c
diff options
context:
space:
mode:
authormetze <metze@0c0555d6-39d7-0310-84fc-f1cc0bd64818>2007-10-25 06:53:38 +0000
committerStefan Metzmacher <metze@samba.org>2007-10-25 15:53:44 +0200
commit899f921c722bb99c04598caa227edb4e4a1093e8 (patch)
treec23465c13c690ed63f01a2583886f34d46f3b9c0 /source3/lib/replace/getaddrinfo.c
parent800ca5179261af3137d319ad72507e26dc7c7d7f (diff)
downloadsamba-899f921c722bb99c04598caa227edb4e4a1093e8.tar.gz
samba-899f921c722bb99c04598caa227edb4e4a1093e8.tar.bz2
samba-899f921c722bb99c04598caa227edb4e4a1093e8.zip
- include getaddrinfo.h after we have defined struct addrinfo
- use rep_ instead of pg_ as prefix in getaddrinfo.[ch] - define HAVE_<name> macros when we replace functions metze git-svn-id: svn+ssh://svn.samba.org/data/svn/samba/branches/SAMBA_4_0@25724 0c0555d6-39d7-0310-84fc-f1cc0bd64818 (This used to be commit e56977ea459b3615d33237d19ed8e7ad8b509853)
Diffstat (limited to 'source3/lib/replace/getaddrinfo.c')
-rw-r--r--source3/lib/replace/getaddrinfo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/lib/replace/getaddrinfo.c b/source3/lib/replace/getaddrinfo.c
index 0bff746797..063bacd026 100644
--- a/source3/lib/replace/getaddrinfo.c
+++ b/source3/lib/replace/getaddrinfo.c
@@ -253,7 +253,7 @@ static int getaddr_info_name(const char *node,
* Bugs: - servname can only be a number, not text.
*/
-int getaddrinfo(const char *node,
+int rep_getaddrinfo(const char *node,
const char *service,
const struct addrinfo * hintp,
struct addrinfo ** res)
@@ -315,7 +315,7 @@ int getaddrinfo(const char *node,
}
-void freeaddrinfo(struct addrinfo *res)
+void rep_freeaddrinfo(struct addrinfo *res)
{
struct addrinfo *next = NULL;
@@ -332,7 +332,7 @@ void freeaddrinfo(struct addrinfo *res)
}
-const char *gai_strerror(int errcode)
+const char *rep_gai_strerror(int errcode)
{
#ifdef HAVE_HSTRERROR
int hcode;
@@ -468,7 +468,7 @@ static int getservicenameinfo(const struct sockaddr *sa,
*
* Bugs: - No IPv6 support.
*/
-int getnameinfo(const struct sockaddr *sa, socklen_t salen,
+int rep_getnameinfo(const struct sockaddr *sa, socklen_t salen,
char *node, size_t nodelen,
char *service, size_t servicelen, int flags)
{