freebsd-skq/contrib/bind/lib/resolv/res_private.h

21 lines
379 B
C
Raw Normal View History

2002-02-04 19:12:46 +00:00
#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];
2002-07-01 01:07:56 +00:00
char nsuffix2[64];
2002-02-04 19:12:46 +00:00
};
extern int
res_ourserver_p(const res_state statp, const struct sockaddr *sa);
#endif