aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/plugins/ct6/ct6.api8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/plugins/ct6/ct6.api b/src/plugins/ct6/ct6.api
index 10a28251a20..f22822be623 100644
--- a/src/plugins/ct6/ct6.api
+++ b/src/plugins/ct6/ct6.api
@@ -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]";
};