1238737Simp/*	$NetBSD: res_private.h,v 1.3 2009/10/24 17:24:01 christos Exp $	*/
2238737Simp
3238737Simp#ifndef res_private_h
4238737Simp#define res_private_h
5238737Simp
6238737Simpstruct __res_state_ext {
7238737Simp	union res_sockaddr_union nsaddrs[MAXNS];
8238737Simp	struct sort_list {
9238737Simp		int     af;
10238737Simp		union {
11238737Simp			struct in_addr  ina;
12238737Simp			struct in6_addr in6a;
13238737Simp		} addr, mask;
14238737Simp	} sort_list[MAXRESOLVSORT];
15238737Simp	char nsuffix[64];
16238737Simp	char nsuffix2[64];
17238737Simp	struct timespec res_conf_time;
18238737Simp	int kq, resfd;
19238737Simp};
20238737Simp
21238737Simpextern int res_ourserver_p(const res_state, const struct sockaddr *);
22238737Simpextern int __res_vinit(res_state, int);
23238737Simp
24238737Simp#endif
25238737Simp
26238737Simp/*! \file */
27238737Simp