diff options
| author | Russ White <russ@riw.us> | 2020-03-24 10:19:17 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-24 10:19:17 -0400 |
| commit | e89bb41d803cb6a0eb49542143365ecceafbe33e (patch) | |
| tree | 737a30169cc8a1bead6fab1aa17bb688c78a1b91 /pimd/pim_pim.c | |
| parent | bb1cceed4a7cc67cc8ebf3360cd15eca31efa5a9 (diff) | |
| parent | b279f95c7097dd66f43d4be09c0071ce1fdb83c5 (diff) | |
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 a76fbed203..f37c140bf2 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; |
