Home | History | Annotate | Line # | Download | only in resolv
res_private.h revision 1.1.1.3
      1  1.1.1.3      ghen /*	$NetBSD: res_private.h,v 1.1.1.3 2007/03/30 20:16:22 ghen Exp $	*/
      2      1.1  christos 
      3      1.1  christos #ifndef res_private_h
      4      1.1  christos #define res_private_h
      5      1.1  christos 
      6      1.1  christos struct __res_state_ext {
      7      1.1  christos 	union res_sockaddr_union nsaddrs[MAXNS];
      8      1.1  christos 	struct sort_list {
      9      1.1  christos 		int     af;
     10      1.1  christos 		union {
     11      1.1  christos 			struct in_addr  ina;
     12      1.1  christos 			struct in6_addr in6a;
     13      1.1  christos 		} addr, mask;
     14      1.1  christos 	} sort_list[MAXRESOLVSORT];
     15      1.1  christos 	char nsuffix[64];
     16      1.1  christos 	char nsuffix2[64];
     17      1.1  christos };
     18      1.1  christos 
     19      1.1  christos extern int
     20      1.1  christos res_ourserver_p(const res_state statp, const struct sockaddr *sa);
     21      1.1  christos 
     22      1.1  christos #endif
     23  1.1.1.2  christos 
     24  1.1.1.2  christos /*! \file */
     25