diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-10-04 09:36:51 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-10-04 09:36:51 +0000 |
commit | 91a3b2ad2e819a7fa14b8f9773856e4303a8c99a (patch) | |
tree | 51a57e3b8099ea652dcf67080c8d626a83ab5cd5 /nscd/gai.c | |
parent | 89e2555f93931aad65d7c683a7a3ca8907929b9a (diff) | |
download | glibc-91a3b2ad2e819a7fa14b8f9773856e4303a8c99a.tar.gz |
Update.
* nscd/Makefile (nscd-modules): Add gai.
* nscd/gai.c: New file.
Diffstat (limited to 'nscd/gai.c')
-rw-r--r-- | nscd/gai.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/nscd/gai.c b/nscd/gai.c new file mode 100644 index 0000000000..2279d7176b --- /dev/null +++ b/nscd/gai.c @@ -0,0 +1,21 @@ +/* This file uses the getaddrinfo code but it compiles it without NSCD + support. We just need a few symbol renames. */ +#define __getservbyname_r getservbyname_r +#define __inet_aton inet_aton +#define __getsockname getsockname +#define __socket socket +#define __recvmsg recvmsg +#define __bind bind +#define __sendto sendto +#define __strchrnul strchrnul + +#include <getaddrinfo.c> + +/* Support code. */ +#include <check_pf.c> +#ifdef HAVE_LIBIDN +# include <libidn/idn-stub.c> +#endif + +/* Some variables normally defined in libc. */ +service_user *__nss_hosts_database; |