From: Donald Sharp Date: Wed, 28 Nov 2018 16:43:26 +0000 (-0500) Subject: zebra: Always resend nexthop information when registered X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=059a0587257051cbe72123566f6e77dffc264ec8;p=matthieu%2Ffrr.git zebra: Always resend nexthop information when registered Always resend the nexthop information when we get a registration event. Multiple daemons expect this information. Signed-off-by: Donald Sharp proto), rnh_str(rnh, buf, sizeof(buf)), type); } - if (!listnode_lookup(rnh->client_list, client)) { + if (!listnode_lookup(rnh->client_list, client)) listnode_add(rnh->client_list, client); - send_client(rnh, client, type, vrf_id); - } + + /* + * We always need to respond with known information, + * currently multiple daemons expect this behavior + */ + send_client(rnh, client, type, vrf_id); } void zebra_remove_rnh_client(struct rnh *rnh, struct zserv *client,