]> git.proxmox.com Git - mirror_frr.git/blob - bgpd/bgp_snmp.h
Merge pull request #13649 from donaldsharp/unlock_the_node_or_else
[mirror_frr.git] / bgpd / bgp_snmp.h
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* Common header file for BGP SNMP implementation.
3 *
4 * Copyright (C) 2022 Donatas Abraitis <donatas@opensourcerouting.org>
5 */
6
7 #ifndef _FRR_BGP_SNMP_H_
8 #define _FRR_BGP_SNMP_H_
9
10 /* SNMP value hack. */
11 #define INTEGER ASN_INTEGER
12 #define INTEGER32 ASN_INTEGER
13 #define COUNTER32 ASN_COUNTER
14 #define OCTET_STRING ASN_OCTET_STR
15 #define IPADDRESS ASN_IPADDRESS
16 #define GAUGE32 ASN_UNSIGNED
17
18 #endif /* _FRR_BGP_SNMP_H_ */