From: Donald Sharp Date: Wed, 28 Nov 2018 16:43:26 +0000 (-0500) Subject: zebra: Always resend nexthop information when registered X-Git-Tag: frr-7.0.1~165^2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=81446366ab3ed70661c80d91c644264c74b6dbfe;p=mirror_frr.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,