diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-10-30 00:43:16 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-10-30 00:43:16 +0000 |
commit | 53bab260f5a80da3c6900d03ae92d2f3ef28bacb (patch) | |
tree | be682b2ad98096dfad96d01a7edf679097504eea /include | |
parent | c94f48d7ce001c847f1af44d68498376fd8a51da (diff) | |
download | glibc-53bab260f5a80da3c6900d03ae92d2f3ef28bacb.tar glibc-53bab260f5a80da3c6900d03ae92d2f3ef28bacb.tar.gz glibc-53bab260f5a80da3c6900d03ae92d2f3ef28bacb.tar.bz2 glibc-53bab260f5a80da3c6900d03ae92d2f3ef28bacb.zip |
Declare __gethostbyaddr2_r and __gethostbyname3_r.
Diffstat (limited to 'include')
-rw-r--r-- | include/netdb.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/netdb.h b/include/netdb.h index 0bf84c21c0..9bbe31b438 100644 --- a/include/netdb.h +++ b/include/netdb.h @@ -62,6 +62,14 @@ extern int __old_gethostbyaddr_r (__const void *__restrict __addr, struct hostent **__restrict __result, int *__restrict __h_errnop); +extern int __gethostbyaddr2_r (__const void *__restrict __addr, + socklen_t __len, int __type, + struct hostent *__restrict __result_buf, + char *__restrict __buf, size_t __buflen, + struct hostent **__restrict __result, + int *__restrict __h_errnop, + int32_t *ttlp); + extern int __gethostbyname_r (__const char *__restrict __name, struct hostent *__restrict __result_buf, char *__restrict __buf, size_t __buflen, @@ -84,6 +92,13 @@ extern int __old_gethostbyname2_r (__const char *__restrict __name, int __af, struct hostent **__restrict __result, int *__restrict __h_errnop); +extern int __gethostbyname3_r (__const char *__restrict __name, int __af, + struct hostent *__restrict __result_buf, + char *__restrict __buf, size_t __buflen, + struct hostent **__restrict __result, + int *__restrict __h_errnop, + int32_t *ttlp, char **canonp); + extern int __getnetent_r (struct netent *__restrict __result_buf, char *__restrict __buf, size_t __buflen, struct netent **__restrict __result, |