diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-05-19 19:36:53 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-07-24 13:51:35 -0400 |
| commit | 9b29ea95fc5b03de64cf9de55a89894deaed17e7 (patch) | |
| tree | 65ca0f047472ea8b25e98063d479d434bc18e5e9 /pimd/pim_hello.c | |
| parent | fec883d95a64c37a9d0cb728085c816ff7188874 (diff) | |
pimd: Remove pimg from pim_upstream.c
Move the upstream_list, hash and wheel into 'struct pim_instance'
Remove all pimg to pim in pim_upstream
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_hello.c')
| -rw-r--r-- | pimd/pim_hello.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pimd/pim_hello.c b/pimd/pim_hello.c index 2592514f38..bfa57d7f9d 100644 --- a/pimd/pim_hello.c +++ b/pimd/pim_hello.c @@ -395,7 +395,8 @@ int pim_hello_recv(struct interface *ifp, struct in_addr src_addr, ifp->name); } - pim_upstream_rpf_genid_changed(neigh->source_addr); + pim_upstream_rpf_genid_changed(pim_ifp->pim, + neigh->source_addr); pim_neighbor_delete(ifp, neigh, "GenID mismatch"); neigh = pim_neighbor_add(ifp, src_addr, hello_options, |
