2009-10-24 21:24:01 +04:00
|
|
|
/* $NetBSD: res_private.h,v 1.3 2009/10/24 17:24:01 christos Exp $ */
|
2004-05-20 21:18:54 +04: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];
|
|
|
|
char nsuffix2[64];
|
2009-10-24 09:35:37 +04:00
|
|
|
struct timespec res_conf_time;
|
|
|
|
int kq, resfd;
|
2004-05-20 21:18:54 +04:00
|
|
|
};
|
|
|
|
|
2009-10-24 09:35:37 +04:00
|
|
|
extern int res_ourserver_p(const res_state, const struct sockaddr *);
|
|
|
|
extern int __res_vinit(res_state, int);
|
2004-05-20 21:18:54 +04:00
|
|
|
|
|
|
|
#endif
|
2007-01-28 00:45:34 +03:00
|
|
|
|
|
|
|
/*! \file */
|