diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-02-14 18:23:28 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-02-24 16:03:41 +0100 |
commit | b5e2377cca8d2e7339927389e6f05a2f4a1e209d (patch) | |
tree | c9851ebb98ea7d3362ff39377735430ecc21f02f /pimd/pim_join.h | |
parent | pimd: Refactor pim_rpf_update to take a 'struct pim_rpf' (diff) | |
download | frr-b5e2377cca8d2e7339927389e6f05a2f4a1e209d.tar.xz frr-b5e2377cca8d2e7339927389e6f05a2f4a1e209d.zip |
pimd: Refactor pim_joinprune_send
Refactor pim_joinprune_send to use 'struct rpf'
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_join.h')
-rw-r--r-- | pimd/pim_join.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/pimd/pim_join.h b/pimd/pim_join.h index 1eeeef756..4b7616632 100644 --- a/pimd/pim_join.h +++ b/pimd/pim_join.h @@ -32,9 +32,8 @@ int pim_joinprune_recv(struct interface *ifp, struct in_addr src_addr, uint8_t *tlv_buf, int tlv_buf_size); -int pim_joinprune_send(struct interface *ifp, - struct in_addr upstream_addr, - struct pim_upstream *up, - int send_join); +int pim_joinprune_send(struct pim_rpf *nexthop, + struct pim_upstream *up, + int send_join); #endif /* PIM_JOIN_H */ |