diff options
author | Florin Coras <fcoras@cisco.com> | 2016-08-02 02:31:03 +0200 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2016-08-04 11:58:07 +0000 |
commit | bb5c22f1b6f48cb53fa2d0e5abcac7248318f8e0 (patch) | |
tree | 6744b25f4af97e88094a3dbd1536ed056b198de8 /vpp/vpp-api/vpe.api | |
parent | f3f25416900288d86511133b4d47e68ccf359772 (diff) |
LISP multihoming API changes and cleanup
Change-Id: I106352a6da0fad2b91dc8593f8d6d664af3113a8
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'vpp/vpp-api/vpe.api')
-rw-r--r-- | vpp/vpp-api/vpe.api | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vpp/vpp-api/vpe.api b/vpp/vpp-api/vpe.api index 4b8aa818..810d86da 100644 --- a/vpp/vpp-api/vpe.api +++ b/vpp/vpp-api/vpe.api @@ -2278,6 +2278,7 @@ define lisp_add_del_local_eid_reply { @param loc_num - number of locators @param lcl_locs - array of local locators @param rmt_locs - array of remote locators + @param action - negative action when 0 locators configured */ define lisp_gpe_add_del_fwd_entry { u32 client_index; @@ -2287,12 +2288,13 @@ define lisp_gpe_add_del_fwd_entry { u8 rmt_eid[16]; u8 lcl_eid[16]; u8 rmt_len; - u8 lcl_len; + u8 lcl_len; u32 vni; u32 dp_table; u32 loc_num; u8 lcl_locs[loc_num]; u8 rmt_locs[loc_num]; + u8 action; }; /** \brief Reply for gpe_fwd_entry add/del |