diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-02-14 12:23:28 -0500 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-02-24 10:03:41 -0500 | 
| commit | b5e2377cca8d2e7339927389e6f05a2f4a1e209d (patch) | |
| tree | c9851ebb98ea7d3362ff39377735430ecc21f02f /pimd/pim_join.h | |
| parent | 42a0111b64018c15b2d3bf71faf384d29113e31a (diff) | |
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 1eeeef756f..4b76166328 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 */  | 
