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