diff options
author | Neale Ranns <neale.ranns@cisco.com> | 2018-09-26 05:07:25 -0700 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2018-09-26 16:54:46 +0000 |
commit | f5fa5ae2b021f946fbb8ec56e692459cd34bc7fb (patch) | |
tree | c5ba2b4602d39d8a7b366706b5535c1c6ac01f81 /src/vnet/mpls/mpls.api | |
parent | 2ac7edeeaf01dc21d9b87e764b6147c035a87c58 (diff) |
MPLS tunnel dump: use sw_if_index not tunnel_index
Change-Id: I6c0d5aec6ee96a0d40358f0e09a0901b22265063
Signed-off-by: Neale Ranns <neale.ranns@cisco.com>
Diffstat (limited to 'src/vnet/mpls/mpls.api')
-rw-r--r-- | src/vnet/mpls/mpls.api | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/vnet/mpls/mpls.api b/src/vnet/mpls/mpls.api index 7d38ffc5bdc..ca1aa3a8513 100644 --- a/src/vnet/mpls/mpls.api +++ b/src/vnet/mpls/mpls.api @@ -70,17 +70,19 @@ define mpls_tunnel_add_del_reply u32 context; i32 retval; u32 sw_if_index; + u32 tunnel_index; }; /** \brief Dump mpls eth tunnel table @param client_index - opaque cookie to identify the sender - @param tunnel_index - eth tunnel identifier or -1 in case of all tunnels + @param sw_if_index - sw_if_index of the MPLS tunnel + (as returned from the create) */ define mpls_tunnel_dump { u32 client_index; u32 context; - i32 tunnel_index; + u32 sw_if_index; }; /** \brief mpls tunnel details @@ -89,7 +91,7 @@ manual_endian manual_print define mpls_tunnel_details { u32 context; u32 mt_sw_if_index; - u8 mt_tunnel_index; + u32 mt_tunnel_index; u8 mt_l2_only; u8 mt_is_multicast; u32 mt_count; |