1 #ifndef __NET_SNMP_SYSTEM_GENERIC_H__
2 #define __NET_SNMP_SYSTEM_GENERIC_H__
3 
4 #define bsdlike bsdlike
5 
6 /*
7  * nlist symbols in ip.c
8  */
9 #define IPSTAT_SYMBOL "ipstat"
10 #define IP_FORWARDING_SYMBOL "ipforwarding"
11 #define TCP_TTL_SYMBOL "tcpDefaultTTL"
12 
13 /*
14  * nlist symbols in interfaces.c
15  */
16 #define IFNET_SYMBOL "ifnet"
17 #define IFADDR_SYMBOL "in_ifaddr"
18 
19 /*
20  * load average lookup symbol
21  */
22 #define LOADAVE_SYMBOL "avenrun"
23 
24 /*
25  * nlist symbols in hr_proc.c and memory.c
26  */
27 #define PHYSMEM_SYMBOL "physmem"
28 #define TOTAL_MEMORY_SYMBOL "total"
29 #define MBSTAT_SYMBOL "mbstat"
30 #define SWDEVT_SYMBOL "swdevt"
31 #define FSWDEVT_SYMBOL "fswdevt"
32 #define NSWAPFS_SYMBOL "nswapfs"
33 #define NSWAPDEV_SYMBOL "nswapdev"
34 
35 /*
36  * process nlist symbols.
37  */
38 #define NPROC_SYMBOL "nproc"
39 #define PROC_SYMBOL "proc"
40 
41 /*
42  * icmp.c nlist symbols
43  */
44 #define ICMPSTAT_SYMBOL "icmpstat"
45 
46 /*
47  * tcp.c nlist symbols
48  */
49 #define TCPSTAT_SYMBOL "tcpstat"
50 #define TCP_SYMBOL "tcb"
51 
52 /*
53  * upd.c nlist symbols
54  */
55 #define UDPSTAT_SYMBOL "udpstat"
56 #define UDB_SYMBOL "udb"
57 
58 /*
59  * var_route.c nlist symbols
60  */
61 #define RTTABLES_SYMBOL "rt_table"
62 #define RTHASHSIZE_SYMBOL "rthashsize"
63 #define RTHOST_SYMBOL "rthost"
64 #define RTNET_SYMBOL "rtnet"
65 
66 /*
67  * udp_inpcb list symbol
68  */
69 #define INP_NEXT_SYMBOL inp_next
70 #define INP_PREV_SYMBOL inp_prev
71 
72 #endif /* !__NET_SNMP_SYSTEM_GENERIC_H__ */
73