lin
2025-03-11 6f4f7a76e03a46fefb056a4b18197f1d9e8aa939
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*    $NetBSD: res_private.h,v 1.1.1.1 2004/05/20 17:18:54 christos Exp $    */
 
#ifndef NETD_RES_STATE_EXT_H
#define NETD_RES_STATE_EXT_H
 
#include "resolv_private.h"
 
// TODO: consider inlining into res_state
struct res_state_ext {
    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];
};
 
#endif  // NETD_RES_STATE_EXT_H