diff options
author | Russ White <russ@riw.us> | 2020-03-24 15:19:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-24 15:19:17 +0100 |
commit | e89bb41d803cb6a0eb49542143365ecceafbe33e (patch) | |
tree | 737a30169cc8a1bead6fab1aa17bb688c78a1b91 /pimd/pim_pim.c | |
parent | Merge pull request #6024 from patrasar/mroute_reshape (diff) | |
parent | pimd: Pim hello should be sent with 0 hold time on address change on old src ip (diff) | |
download | frr-e89bb41d803cb6a0eb49542143365ecceafbe33e.tar.xz frr-e89bb41d803cb6a0eb49542143365ecceafbe33e.zip |
Merge pull request #6047 from sarav511/hold0
pimd: Pim hello should be sent with 0 hold time on address change onold src ip
Diffstat (limited to 'pimd/pim_pim.c')
-rw-r--r-- | pimd/pim_pim.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pimd/pim_pim.c b/pimd/pim_pim.c index a76fbed20..f37c140bf 100644 --- a/pimd/pim_pim.c +++ b/pimd/pim_pim.c @@ -42,7 +42,6 @@ #include "pim_bsm.h" static int on_pim_hello_send(struct thread *t); -static int pim_hello_send(struct interface *ifp, uint16_t holdtime); static const char *pim_pim_msgtype2str(enum pim_msg_type type) { @@ -689,7 +688,7 @@ static int hello_send(struct interface *ifp, uint16_t holdtime) return 0; } -static int pim_hello_send(struct interface *ifp, uint16_t holdtime) +int pim_hello_send(struct interface *ifp, uint16_t holdtime) { struct pim_interface *pim_ifp = ifp->info; |