summaryrefslogtreecommitdiff
path: root/zebra/zebra_vxlan.c
diff options
context:
space:
mode:
authorMark Stapp <mjs@voltanet.io>2021-04-16 12:17:11 -0400
committerMark Stapp <mjs.ietf@gmail.com>2021-07-19 08:43:48 -0400
commit272e11bfc4be93a57867834edf950804680697dd (patch)
tree4fd899da7fd2c8335e7f8c1bfa44169d63afabb9 /zebra/zebra_vxlan.c
parent12e1fe1251db5a26e00c6b48b084a25b69c014e5 (diff)
zebra: give some evpn apis better names
Use more useful names for a few evpn apis. Signed-off-by: Mark Stapp <mjs@voltanet.io>
Diffstat (limited to 'zebra/zebra_vxlan.c')
-rw-r--r--zebra/zebra_vxlan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/zebra_vxlan.c b/zebra/zebra_vxlan.c
index 2f3ea7475a..b434433e17 100644
--- a/zebra/zebra_vxlan.c
+++ b/zebra/zebra_vxlan.c
@@ -3844,7 +3844,7 @@ void zebra_vxlan_remote_macip_del(ZAPI_HANDLER_ARGS)
ipaddr2str(&ip, buf1, sizeof(buf1)) : "",
&vtep_ip, zebra_route_string(client->proto));
- process_remote_macip_del(vni, &macaddr, ipa_len, &ip, vtep_ip);
+ zebra_evpn_rem_macip_del(vni, &macaddr, ipa_len, &ip, vtep_ip);
}
stream_failure:
@@ -3907,7 +3907,7 @@ void zebra_vxlan_remote_macip_add(ZAPI_HANDLER_ARGS)
zebra_route_string(client->proto));
}
- process_remote_macip_add(vni, &macaddr, ipa_len, &ip,
+ zebra_evpn_rem_macip_add(vni, &macaddr, ipa_len, &ip,
flags, seq, vtep_ip, &esi);
}