diff options
author | Louis Scalbert <louis.scalbert@6wind.com> | 2024-02-23 15:18:03 +0100 |
---|---|---|
committer | Louis Scalbert <louis.scalbert@6wind.com> | 2024-06-05 13:11:29 +0200 |
commit | 3c86f776f053bc9032da8dc3b713f7726117b800 (patch) | |
tree | 1a728c669fc3437805cf980624721a710fd02879 /bgpd/bgp_memory.c | |
parent | topotests: add bgp test to check the ADJ-RIB-IN label value (diff) | |
download | frr-3c86f776f053bc9032da8dc3b713f7726117b800.tar.xz frr-3c86f776f053bc9032da8dc3b713f7726117b800.zip |
bgpd: add bgp_labels hash
Add bgp_labels type and hash list.
Signed-off-by: Louis Scalbert <louis.scalbert@6wind.com>
Diffstat (limited to 'bgpd/bgp_memory.c')
-rw-r--r-- | bgpd/bgp_memory.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bgpd/bgp_memory.c b/bgpd/bgp_memory.c index 53c03d810..c1804fb70 100644 --- a/bgpd/bgp_memory.c +++ b/bgpd/bgp_memory.c @@ -102,6 +102,8 @@ DEFINE_MTYPE(BGPD, BGP_FILTER_NAME, "BGP Filter Information"); DEFINE_MTYPE(BGPD, BGP_DUMP_STR, "BGP Dump String Information"); DEFINE_MTYPE(BGPD, ENCAP_TLV, "ENCAP TLV"); +DEFINE_MTYPE(BGPD, BGP_LABELS, "BGP LABELS"); + DEFINE_MTYPE(BGPD, BGP_TEA_OPTIONS, "BGP TEA Options"); DEFINE_MTYPE(BGPD, BGP_TEA_OPTIONS_VALUE, "BGP TEA Options Value"); |