File: res_private.h

package info (click to toggle)
libbind 6.0-1
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 4,656 kB
  • ctags: 4,846
  • sloc: ansic: 39,507; sh: 8,415; makefile: 761
file content (22 lines) | stat: -rw-r--r-- 393 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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

/*! \file */