diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-11-02 15:53:28 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-12-22 02:26:13 +0100 |
commit | 66cc32fa0a057c3c036c876bd6326c7b27e9a585 (patch) | |
tree | dad511802957220f4f98b5037ac155acd583f02e /pimd/pim_rpf.h | |
parent | PIM After LHR swp bounce toward rx host, igmp_source_forward_start (diff) | |
download | frr-66cc32fa0a057c3c036c876bd6326c7b27e9a585.tar.xz frr-66cc32fa0a057c3c036c876bd6326c7b27e9a585.zip |
pimd: Add the ability to test if the RPF' is the same
Test the ability to see if two RPF' are the same
or not.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_rpf.h')
-rw-r--r-- | pimd/pim_rpf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pimd/pim_rpf.h b/pimd/pim_rpf.h index b267a9b6f..e54aa5125 100644 --- a/pimd/pim_rpf.h +++ b/pimd/pim_rpf.h @@ -69,5 +69,6 @@ enum pim_rpf_result pim_rpf_update(struct pim_upstream *up, struct in_addr *old_ int pim_rpf_addr_is_inaddr_none (struct pim_rpf *rpf); int pim_rpf_addr_is_inaddr_any (struct pim_rpf *rpf); +int pim_rpf_is_same (struct pim_rpf *rpf1, struct pim_rpf *rpf2); void pim_rpf_set_refresh_time (void); #endif /* PIM_RPF_H */ |