ct6: use explicit type in api 33/23833/2
authorOle Troan <ot@cisco.com>
Fri, 6 Dec 2019 12:19:01 +0000 (13:19 +0100)
committerAndrew Yourtchenko <ayourtch@gmail.com>
Fri, 6 Dec 2019 14:07:31 +0000 (14:07 +0000)
Type: fix
Signed-off-by: Ole Troan <ot@cisco.com>
Change-Id: I2342baa91234db1336394305c031dbfa21d219a5

src/plugins/ct6/ct6.api

index 10a2825..f22822b 100644 (file)
@@ -1,5 +1,7 @@
 
 /* Define a simple enable-disable binary API to control the feature */
+option version = "1.0.0";
+import "vnet/interface_types.api";
 
 autoreply define ct6_enable_disable {
     /* Client identifier, set from api_main.my_client_index */
@@ -9,12 +11,12 @@ autoreply define ct6_enable_disable {
     u32 context;
 
     /* Enable / disable the feature */
-    u8 enable_disable;
+    bool enable_disable;
 
     /* Inside or outside interface */
-    u8 is_inside;
+    bool is_inside;
 
     /* Interface handle */
-    u32 sw_if_index;
+    vl_api_interface_index_t sw_if_index;
     option vat_help = "<intfc> [disable]";
 };