aboutsummaryrefslogtreecommitdiffstats
path: root/vpp
diff options
context:
space:
mode:
Diffstat (limited to 'vpp')
-rw-r--r--vpp/api/api.c4
-rw-r--r--vpp/api/vpe.api2
2 files changed, 4 insertions, 2 deletions
diff --git a/vpp/api/api.c b/vpp/api/api.c
index 8603ec88..ea14bffb 100644
--- a/vpp/api/api.c
+++ b/vpp/api/api.c
@@ -4994,8 +4994,8 @@ vl_api_lisp_add_del_remote_mapping_t_handler (
vec_add1 (rlocs, rloc);
}
- rv = vnet_lisp_add_del_remote_mapping (deid, seid, rlocs,
- mp->action, mp->is_add);
+ rv = vnet_lisp_add_del_remote_mapping (deid, seid, rlocs, mp->action,
+ mp->is_add, mp->del_all);
vec_free (rlocs);
REPLY_MACRO(VL_API_LISP_GPE_ADD_DEL_IFACE_REPLY);
}
diff --git a/vpp/api/vpe.api b/vpp/api/vpe.api
index 9ae4987f..9a639c61 100644
--- a/vpp/api/vpe.api
+++ b/vpp/api/vpe.api
@@ -2369,6 +2369,7 @@ define lisp_pitr_set_locator_set_reply {
@param client_index - opaque cookie to identify the sender
@param context - sender context, to match reply w/ request
@param is_add - add address if non-zero, else delete
+ @param del_all - if set, delete all remote mappings
@param vni - virtual network instance
@param action - negative map-reply action
@param eid_is_ip4 - ipv4/6 of source and destination EIDs
@@ -2381,6 +2382,7 @@ define lisp_add_del_remote_mapping {
u32 client_index;
u32 context;
u8 is_add;
+ u8 del_all;
u32 vni;
u8 action;
u8 eid_is_ip4;