/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * Definitions for MIBs * * Author: Hideaki YOSHIFUJI <[email protected]> */ #ifndef _LINUX_SNMP_H #define _LINUX_SNMP_H /* ipstats mib definitions */ /* * RFC 1213: MIB-II * RFC 2011 (updates 1213): SNMPv2-MIB-IP * RFC 2863: Interfaces Group MIB * RFC 2465: IPv6 MIB: General Group * draft-ietf-ipv6-rfc2011-update-10.txt: MIB for IP: IP Statistics Tables */ enum { … }; /* icmp mib definitions */ /* * RFC 1213: MIB-II ICMP Group * RFC 2011 (updates 1213): SNMPv2 MIB for IP: ICMP group */ enum { … }; #define __ICMPMSG_MIB_MAX … /* icmp6 mib definitions */ /* * RFC 2466: ICMPv6-MIB */ enum { … }; #define __ICMP6MSG_MIB_MAX … /* tcp mib definitions */ /* * RFC 1213: MIB-II TCP group * RFC 2012 (updates 1213): SNMPv2-MIB-TCP */ enum { … }; /* udp mib definitions */ /* * RFC 1213: MIB-II UDP group * RFC 2013 (updates 1213): SNMPv2-MIB-UDP */ enum { … }; /* linux mib definitions */ enum { … }; /* linux Xfrm mib definitions */ enum { … }; /* linux TLS mib definitions */ enum { … }; #endif /* _LINUX_SNMP_H */