summaryrefslogtreecommitdiffstats
path: root/pimd/pim_pim.c
diff options
context:
space:
mode:
authorRuss White <russ@riw.us>2020-03-24 15:19:17 +0100
committerGitHub <noreply@github.com>2020-03-24 15:19:17 +0100
commite89bb41d803cb6a0eb49542143365ecceafbe33e (patch)
tree737a30169cc8a1bead6fab1aa17bb688c78a1b91 /pimd/pim_pim.c
parentMerge pull request #6024 from patrasar/mroute_reshape (diff)
parentpimd: Pim hello should be sent with 0 hold time on address change on old src ip (diff)
downloadfrr-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.c3
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;