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_main.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_main.c')
-rw-r--r-- | bgpd/bgp_main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bgpd/bgp_main.c b/bgpd/bgp_main.c index 2bbd3a4b1..97658d340 100644 --- a/bgpd/bgp_main.c +++ b/bgpd/bgp_main.c @@ -225,6 +225,9 @@ static __attribute__((__noreturn__)) void bgp_exit(int status) /* reverse bgp_attr_init */ bgp_attr_finish(); + /* reverse bgp_labels_init */ + bgp_labels_finish(); + /* stop pthreads */ bgp_pthreads_finish(); |