2008-07-18 11:01:24 +00:00
|
|
|
#ifndef __NETNS_MIB_H__
|
|
|
|
#define __NETNS_MIB_H__
|
|
|
|
|
|
|
|
#include <net/snmp.h>
|
|
|
|
|
|
|
|
struct netns_mib {
|
2008-07-18 11:02:08 +00:00
|
|
|
DEFINE_SNMP_STAT(struct tcp_mib, tcp_statistics);
|
2008-07-18 11:02:42 +00:00
|
|
|
DEFINE_SNMP_STAT(struct ipstats_mib, ip_statistics);
|
2008-07-18 11:03:08 +00:00
|
|
|
DEFINE_SNMP_STAT(struct linux_mib, net_statistics);
|
2008-07-18 11:03:27 +00:00
|
|
|
DEFINE_SNMP_STAT(struct udp_mib, udp_statistics);
|
2008-07-18 11:03:45 +00:00
|
|
|
DEFINE_SNMP_STAT(struct udp_mib, udplite_statistics);
|
2008-07-18 11:04:02 +00:00
|
|
|
DEFINE_SNMP_STAT(struct icmp_mib, icmp_statistics);
|
2008-07-18 11:04:22 +00:00
|
|
|
DEFINE_SNMP_STAT(struct icmpmsg_mib, icmpmsg_statistics);
|
2008-10-07 21:45:55 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
|
|
|
|
struct proc_dir_entry *proc_net_devsnmp6;
|
2008-10-07 21:49:36 +00:00
|
|
|
DEFINE_SNMP_STAT(struct udp_mib, udp_stats_in6);
|
2008-10-07 21:50:06 +00:00
|
|
|
DEFINE_SNMP_STAT(struct udp_mib, udplite_stats_in6);
|
2008-10-07 21:45:55 +00:00
|
|
|
#endif
|
2008-07-18 11:01:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|