diff options
author | ume <ume@FreeBSD.org> | 2006-03-21 15:03:19 +0000 |
---|---|---|
committer | ume <ume@FreeBSD.org> | 2006-03-21 15:03:19 +0000 |
commit | 1adda4f185c249ca2f34c379b5ea50e5e8f0d120 (patch) | |
tree | 75e88001d6a51e37f47dd2ae25e4fb1ea9458764 /lib/libc/resolv/res_private.h | |
parent | d9570098d7482d042bee3e8e5549688be839231f (diff) | |
download | FreeBSD-src-1adda4f185c249ca2f34c379b5ea50e5e8f0d120.zip FreeBSD-src-1adda4f185c249ca2f34c379b5ea50e5e8f0d120.tar.gz |
Vendor import of BIND 9.3.2
Diffstat (limited to 'lib/libc/resolv/res_private.h')
-rw-r--r-- | lib/libc/resolv/res_private.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/libc/resolv/res_private.h b/lib/libc/resolv/res_private.h new file mode 100644 index 0000000..d7b66cd --- /dev/null +++ b/lib/libc/resolv/res_private.h @@ -0,0 +1,20 @@ +#ifndef res_private_h +#define res_private_h + +struct __res_state_ext { + union res_sockaddr_union nsaddrs[MAXNS]; + struct sort_list { + int af; + union { + struct in_addr ina; + struct in6_addr in6a; + } addr, mask; + } sort_list[MAXRESOLVSORT]; + char nsuffix[64]; + char nsuffix2[64]; +}; + +extern int +res_ourserver_p(const res_state statp, const struct sockaddr *sa); + +#endif |