When an interface changes which vrf it is part of, it needs to be added
to the list of possible router-id choices in the new vrf and removed
from the old vrf/default.
Ticket: CM-9074
Signed-off-by: Don Slice
Reviewed-by: Vivek Venkatraman
for (ALL_LIST_ELEMENTS (ifp->connected, node, next, ifc))
{
p = ifc->address;
+ zebra_interface_address_add_update (ifp, ifc);
if (p->family == AF_INET)
connected_up_ipv4 (ifp, ifc);
for (ALL_LIST_ELEMENTS (ifp->connected, node, next, ifc))
{
p = ifc->address;
+ zebra_interface_address_delete_update (ifp, ifc);
if (p->family == AF_INET)
connected_down_ipv4 (ifp, ifc);