diff options
author | radhika <radhika@cumulusnetworks.com> | 2016-03-08 14:10:56 +0100 |
---|---|---|
committer | radhika <radhika@cumulusnetworks.com> | 2016-03-08 14:10:56 +0100 |
commit | d553294e093c547005975c40d8272c56a0fe67d1 (patch) | |
tree | b655d50d84e79774b5d47fc1745e8bd7e3d28faf /zebra/zebra_ptm_redistribute.h | |
parent | Merge branch 'cmaster' of ssh://stash.cumulusnetworks.com:7999/quag/quagga in... (diff) | |
download | frr-d553294e093c547005975c40d8272c56a0fe67d1.tar.xz frr-d553294e093c547005975c40d8272c56a0fe67d1.zip |
Zebra and bgpd: VRF support for BFD
Following changes have been done to support VRF for BFD in zebra and bgpd.
- Pass the correct VRF value from bgpd to zebra for reg and dereg of BFD destinations.
- Send the non-default vrf name in reg/dereg messages of multihop destination to BFD/PTM from zebra.
Signed-off-by: Radhika Mahankali <radhika@cumulusnetworks.com>
Ticket: CM-8450
Reviewed By: CCR-4253
Testing Done: Unit, PTM smoke, BGP Smoke
Diffstat (limited to 'zebra/zebra_ptm_redistribute.h')
-rw-r--r-- | zebra/zebra_ptm_redistribute.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_ptm_redistribute.h b/zebra/zebra_ptm_redistribute.h index d78390e89..d5aa37d5f 100644 --- a/zebra/zebra_ptm_redistribute.h +++ b/zebra/zebra_ptm_redistribute.h @@ -23,6 +23,6 @@ #ifndef _ZEBRA_PTM_REDISTRIBUTE_H #define _ZEBRA_PTM_REDISTRIBUTE_H extern void zebra_interface_bfd_update (struct interface *, struct prefix *, - struct prefix *, int); + struct prefix *, int, vrf_id_t); extern void zebra_bfd_peer_replay_req (void); #endif /* _ZEBRA_PTM_REDISTRIBUTE_H */ |