From de4e7e3355b64d1ec95d55426843014d905d43df Mon Sep 17 00:00:00 2001 From: Mobashshera Rasool Date: Sun, 3 Oct 2021 21:55:46 -0700 Subject: [PATCH] pimd: pimd: hello sent counters are getting clear on new neighbor addition Problem Statement: ================== On new neighbor addition, the tx counter for hello msg is reset. Fix: ================= Do not reset the tx counter on new neighbor addition. Signed-off-by: Mobashshera Rasool --- pimd/pim_iface.c | 1 - 1 file changed, 1 deletion(-) diff --git a/pimd/pim_iface.c b/pimd/pim_iface.c index 4b87bde281..b18743e2a4 100644 --- a/pimd/pim_iface.c +++ b/pimd/pim_iface.c @@ -289,7 +289,6 @@ static void pim_addr_change(struct interface *ifp) HoldTime should be sent immediately. -- FIXME See TODO T31 */ - pim_ifp->pim_ifstat_hello_sent = 0; /* reset hello counter */ PIM_IF_FLAG_UNSET_HELLO_SENT(pim_ifp->flags); if (pim_ifp->pim_sock_fd < 0) return; -- 2.39.5