diff options
author | Filip Tehlar <ftehlar@cisco.com> | 2016-08-24 14:11:07 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2016-08-26 11:19:00 +0000 |
commit | c068179a6c8ce57428f4f8dda19fb2de6027fe8f (patch) | |
tree | a9e53efeb7f339b3679707e1b989d2e8315ace71 /vpp/vpp-api/vpe.api | |
parent | cc6ca8832cfd063b2f1b9b1b2809f31da0236f9d (diff) |
VPP-329: Add L2 support to lisp_eid_table_map_dump
Change-Id: Idfb115cd1f95394f4a4a569dc34c0488a1d58558
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Diffstat (limited to 'vpp/vpp-api/vpe.api')
-rw-r--r-- | vpp/vpp-api/vpe.api | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/vpp/vpp-api/vpe.api b/vpp/vpp-api/vpe.api index fb0a4145..1143c436 100644 --- a/vpp/vpp-api/vpe.api +++ b/vpp/vpp-api/vpe.api @@ -2860,25 +2860,27 @@ define lisp_eid_table_dump u8 filter; }; -/** \brief Shows relationship between vni and vrf - @param vrf - VRF index +/** \brief Shows relationship between vni and vrf/bd + @param dp_table - VRF index or bridge domain index @param vni - vitual network instance */ define lisp_eid_table_map_details { u32 context; u32 vni; - u32 vrf; + u32 dp_table; }; /** \brief Request for lisp_eid_table_map_details @param client_index - opaque cookie to identify the sender @param context - sender context, to match reply w/ request + @param is_l2 - if set dump vni/bd mappings else vni/vrf */ define lisp_eid_table_map_dump { u32 client_index; u32 context; + u8 is_l2; }; /** \brief Dumps all VNIs used in mappings |