From: Jakub Grajciar Date: Tue, 1 Oct 2019 09:37:30 +0000 (+0200) Subject: feature: API cleanup X-Git-Tag: v20.05-rc0~730 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F39%2F22439%2F2;p=vpp.git feature: API cleanup Use consistent API types. Type: fix Signed-off-by: Jakub Grajciar Change-Id: Id1e7210298cb494f3cb7a47a9ecf2bc1d9c1d58e --- diff --git a/src/vnet/feature/feature.api b/src/vnet/feature/feature.api index 96ee72420af..7b52a6630cb 100644 --- a/src/vnet/feature/feature.api +++ b/src/vnet/feature/feature.api @@ -16,10 +16,12 @@ /** \file This file defines VPP feature control-plane API messages which are generally - called through a shared memory interface. + called through a shared memory interface. */ -option version = "1.0.1"; +option version = "1.0.2"; + +import "vnet/interface_types.api"; /** \brief Feature path enable/disable request @param client_index - opaque cookie to identify the sender @@ -30,10 +32,10 @@ option version = "1.0.1"; autoreply define feature_enable_disable { u32 client_index; u32 context; - u32 sw_if_index; - u8 enable; - u8 arc_name[64]; - u8 feature_name[64]; + vl_api_interface_index_t sw_if_index; + bool enable; + string arc_name[64]; + string feature_name[64]; }; /*