]>
Commit | Line | Data |
---|---|---|
852566f5 PE |
1 | #ifndef __NETNS_MIB_H__ |
2 | #define __NETNS_MIB_H__ | |
3 | ||
4 | #include <net/snmp.h> | |
5 | ||
6 | struct netns_mib { | |
57ef42d5 | 7 | DEFINE_SNMP_STAT(struct tcp_mib, tcp_statistics); |
a20f5799 | 8 | DEFINE_SNMP_STAT(struct ipstats_mib, ip_statistics); |
61a7e260 | 9 | DEFINE_SNMP_STAT(struct linux_mib, net_statistics); |
2f275f91 | 10 | DEFINE_SNMP_STAT(struct udp_mib, udp_statistics); |
386019d3 | 11 | DEFINE_SNMP_STAT(struct udp_mib, udplite_statistics); |
b60538a0 | 12 | DEFINE_SNMP_STAT(struct icmp_mib, icmp_statistics); |
acb32ba3 | 13 | DEFINE_SNMP_STAT_ATOMIC(struct icmpmsg_mib, icmpmsg_statistics); |
835bcc04 | 14 | |
dfd56b8b | 15 | #if IS_ENABLED(CONFIG_IPV6) |
835bcc04 | 16 | struct proc_dir_entry *proc_net_devsnmp6; |
0c7ed677 | 17 | DEFINE_SNMP_STAT(struct udp_mib, udp_stats_in6); |
be713a44 | 18 | DEFINE_SNMP_STAT(struct udp_mib, udplite_stats_in6); |
9261e537 DL |
19 | DEFINE_SNMP_STAT(struct ipstats_mib, ipv6_statistics); |
20 | DEFINE_SNMP_STAT(struct icmpv6_mib, icmpv6_statistics); | |
2a24444f | 21 | DEFINE_SNMP_STAT_ATOMIC(struct icmpv6msg_mib, icmpv6msg_statistics); |
835bcc04 | 22 | #endif |
59c9940e AD |
23 | #ifdef CONFIG_XFRM_STATISTICS |
24 | DEFINE_SNMP_STAT(struct linux_xfrm_mib, xfrm_statistics); | |
25 | #endif | |
852566f5 PE |
26 | }; |
27 | ||
28 | #endif |