diff options
author | Filip Tehlar <ftehlar@cisco.com> | 2017-06-05 13:40:13 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2017-06-05 15:31:07 +0000 |
commit | 560274d042d12f31aceabff6a293cdf71429552d (patch) | |
tree | b46615b680e84138b908d7765029a0b13e6f5d8e /src/vnet/lisp-gpe/lisp_gpe.api | |
parent | 719aef4835403125284a4fa71093e8b536997841 (diff) |
LISP-GPE: return index of newly created fwd entry, VPP-868
Change-Id: I4fc45097cb994ab6a59503d9fcfb693d1c7ec442
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Diffstat (limited to 'src/vnet/lisp-gpe/lisp_gpe.api')
-rw-r--r-- | src/vnet/lisp-gpe/lisp_gpe.api | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/vnet/lisp-gpe/lisp_gpe.api b/src/vnet/lisp-gpe/lisp_gpe.api index 7af153355b7..706f20d4585 100644 --- a/src/vnet/lisp-gpe/lisp_gpe.api +++ b/src/vnet/lisp-gpe/lisp_gpe.api @@ -43,7 +43,7 @@ typeonly manual_print manual_endian define gpe_locator @param loc_num - number of locators @param locs - array of remote locators */ -autoreply manual_print manual_endian define gpe_add_del_fwd_entry +manual_print manual_endian define gpe_add_del_fwd_entry { u32 client_index; u32 context; @@ -60,6 +60,13 @@ autoreply manual_print manual_endian define gpe_add_del_fwd_entry vl_api_gpe_locator_t locs[loc_num]; }; +define gpe_add_del_fwd_entry_reply +{ + i32 retval; + u32 context; + u32 fwd_entry_index; +}; + /** \brief enable or disable gpe protocol @param client_index - opaque cookie to identify the sender @param context - sender context, to match reply w/ request |