From fa8489cb5cdb0b95955bfa15d3eebf377effd360 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Thu, 8 Dec 2016 15:53:06 -0500 Subject: [PATCH] pimd: Don't send (S,G)RPT prune Sending (S,G)RPT prune was causing issues due to not handling it properly at this point in time. So just don't send it right now Ticket: CM-13969 Signed-off-by: Donald Sharp --- pimd/pim_msg.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pimd/pim_msg.c b/pimd/pim_msg.c index 0de9518d76..d511123f98 100644 --- a/pimd/pim_msg.c +++ b/pimd/pim_msg.c @@ -207,6 +207,11 @@ pim_msg_join_prune_encode (uint8_t *buf, int buf_size, int is_join, } remain = pim_msg_curr - pim_msg; + /* + * This is not implemented correctly at this point in time + * Make it stop. + */ +#if 0 if (up->sg.src.s_addr == INADDR_ANY) { struct pim_upstream *child; @@ -267,7 +272,7 @@ pim_msg_join_prune_encode (uint8_t *buf, int buf_size, int is_join, } } } - +#endif pim_msg_build_header (pim_msg, remain, PIM_MSG_TYPE_JOIN_PRUNE); return remain; -- 2.39.5