nsh: use explicit api types 39/23839/2
authorOle Troan <ot@cisco.com>
Fri, 6 Dec 2019 13:01:16 +0000 (14:01 +0100)
committerAndrew Yourtchenko <ayourtch@gmail.com>
Fri, 6 Dec 2019 14:02:58 +0000 (14:02 +0000)
Type: fix
Signed-off-by: Ole Troan <ot@cisco.com>
Change-Id: I8fd870e757e9243d4f0916dfbbe65495f7e1a8c6

src/plugins/nsh/nsh.api

index 6beed00..45b1180 100644 (file)
@@ -1,4 +1,6 @@
+option version = "1.0.0";
 
+import "vnet/interface_types.api";
 
 /** \brief /** \brief Set or delete an NSH header entry keyed by NSP/NSI
     @param client_index - opaque cookie to identify the sender
@@ -19,7 +21,7 @@
 define nsh_add_del_entry {
     u32 client_index;
     u32 context;
-    u8 is_add;
+    bool is_add;
     u32 nsp_nsi;
     u8 md_type;
     u8 ver_o_c;
@@ -86,12 +88,12 @@ define nsh_entry_details {
 define nsh_add_del_map {
     u32 client_index;
     u32 context;
-    u8 is_add;
+    bool is_add;
     u32 nsp_nsi;
     u32 mapped_nsp_nsi;
     u32 nsh_action;
-    u32 sw_if_index;
-    u32 rx_sw_if_index;
+    vl_api_interface_index_t sw_if_index;
+    vl_api_interface_index_t rx_sw_if_index;
     u32 next_node;
 };
 
@@ -117,7 +119,7 @@ define nsh_map_details {
     u32 nsp_nsi;
     u32 mapped_nsp_nsi;
     u32 nsh_action;
-    u32 sw_if_index;
-    u32 rx_sw_if_index;
+    vl_api_interface_index_t sw_if_index;
+    vl_api_interface_index_t rx_sw_if_index;
     u32 next_node;
 };