diff options
Diffstat (limited to 'include/net/netns/mib.h')
-rw-r--r-- | include/net/netns/mib.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/net/netns/mib.h b/include/net/netns/mib.h new file mode 100644 index 000000000000..449147604642 --- /dev/null +++ b/include/net/netns/mib.h | |||
@@ -0,0 +1,16 @@ | |||
1 | #ifndef __NETNS_MIB_H__ | ||
2 | #define __NETNS_MIB_H__ | ||
3 | |||
4 | #include <net/snmp.h> | ||
5 | |||
6 | struct netns_mib { | ||
7 | DEFINE_SNMP_STAT(struct tcp_mib, tcp_statistics); | ||
8 | DEFINE_SNMP_STAT(struct ipstats_mib, ip_statistics); | ||
9 | DEFINE_SNMP_STAT(struct linux_mib, net_statistics); | ||
10 | DEFINE_SNMP_STAT(struct udp_mib, udp_statistics); | ||
11 | DEFINE_SNMP_STAT(struct udp_mib, udplite_statistics); | ||
12 | DEFINE_SNMP_STAT(struct icmp_mib, icmp_statistics); | ||
13 | DEFINE_SNMP_STAT(struct icmpmsg_mib, icmpmsg_statistics); | ||
14 | }; | ||
15 | |||
16 | #endif | ||