From: Ole Troan Date: Fri, 6 Dec 2019 12:19:01 +0000 (+0100) Subject: ct6: use explicit type in api X-Git-Tag: v20.05-rc0~236 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=d4efce2e0;hp=07e557a73b913061c2f680f05183b9ca605e5d86;p=vpp.git ct6: use explicit type in api Type: fix Signed-off-by: Ole Troan Change-Id: I2342baa91234db1336394305c031dbfa21d219a5 --- 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 = " [disable]"; };