diff options
author | Louis Scalbert <louis.scalbert@6wind.com> | 2024-02-26 18:11:09 +0100 |
---|---|---|
committer | Louis Scalbert <louis.scalbert@6wind.com> | 2024-06-05 13:11:29 +0200 |
commit | a6de9104481814508deee38bdcf308f4693a6bca (patch) | |
tree | be0836c357b007871aba39b83ce260d024afab59 /bgpd/bgp_zebra.h | |
parent | bgpd: fix too leading tabs in vnc_import_bgp (diff) | |
download | frr-a6de9104481814508deee38bdcf308f4693a6bca.tar.xz frr-a6de9104481814508deee38bdcf308f4693a6bca.zip |
bgpd: store number of labels with 8 bits
8 bits are sufficient to store the number of labels because the current
maximum is 2.
Signed-off-by: Louis Scalbert <louis.scalbert@6wind.com>
Diffstat (limited to '')
-rw-r--r-- | bgpd/bgp_zebra.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_zebra.h b/bgpd/bgp_zebra.h index ef296b963..55a4185bd 100644 --- a/bgpd/bgp_zebra.h +++ b/bgpd/bgp_zebra.h @@ -120,7 +120,7 @@ extern int bgp_zebra_srv6_manager_release_locator_chunk(const char *name); extern void bgp_zebra_send_nexthop_label(int cmd, mpls_label_t label, ifindex_t index, vrf_id_t vrfid, enum lsp_types_t ltype, - struct prefix *p, uint32_t num_labels, + struct prefix *p, uint8_t num_labels, mpls_label_t out_labels[]); extern bool bgp_zebra_request_label_range(uint32_t base, uint32_t chunk_size, bool label_auto); |