mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-04-28 11:50:21 +00:00

Done with a combination of regex'ing and banging my head against a wall. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
19 lines
464 B
C
19 lines
464 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/* Common header file for BGP SNMP implementation.
|
|
*
|
|
* Copyright (C) 2022 Donatas Abraitis <donatas@opensourcerouting.org>
|
|
*/
|
|
|
|
#ifndef _FRR_BGP_SNMP_H_
|
|
#define _FRR_BGP_SNMP_H_
|
|
|
|
/* SNMP value hack. */
|
|
#define INTEGER ASN_INTEGER
|
|
#define INTEGER32 ASN_INTEGER
|
|
#define COUNTER32 ASN_COUNTER
|
|
#define OCTET_STRING ASN_OCTET_STR
|
|
#define IPADDRESS ASN_IPADDRESS
|
|
#define GAUGE32 ASN_UNSIGNED
|
|
|
|
#endif /* _FRR_BGP_SNMP_H_ */
|