source: rtems-libbsd/freebsd/lib/libc/resolv/res_private.h @ 2017a6d

55-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since 2017a6d was 2404264, checked in by Sebastian Huber <sebastian.huber@…>, on 10/30/13 at 12:23:59

Revert superfluous changes

  • Property mode set to 100644
File size: 393 bytes
Line 
1#ifndef res_private_h
2#define res_private_h
3
4struct __res_state_ext {
5        union res_sockaddr_union nsaddrs[MAXNS];
6        struct sort_list {
7                int     af;
8                union {
9                        struct in_addr  ina;
10                        struct in6_addr in6a;
11                } addr, mask;
12        } sort_list[MAXRESOLVSORT];
13        char nsuffix[64];
14        char nsuffix2[64];
15};
16
17extern int
18res_ourserver_p(const res_state statp, const struct sockaddr *sa);
19
20#endif
21
22/*! \file */
Note: See TracBrowser for help on using the repository browser.