mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-06 11:19:56 +00:00
a20f5799ca
Similar to tcp one. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
12 lines
207 B
C
12 lines
207 B
C
#ifndef __NETNS_MIB_H__
|
|
#define __NETNS_MIB_H__
|
|
|
|
#include <net/snmp.h>
|
|
|
|
struct netns_mib {
|
|
DEFINE_SNMP_STAT(struct tcp_mib, tcp_statistics);
|
|
DEFINE_SNMP_STAT(struct ipstats_mib, ip_statistics);
|
|
};
|
|
|
|
#endif
|