From 933fcf489391f715339af685faefaf28701ecce2 Mon Sep 17 00:00:00 2001 From: Jakub Grajciar Date: Mon, 2 Mar 2020 13:23:21 +0100 Subject: [PATCH] api: API cleanup Use consistent API types. Type: fix Signed-off-by: Jakub Grajciar Change-Id: Ic108311e09c56cc2b3db63d5850598b6896a7897 Signed-off-by: Jakub Grajciar --- src/vpp/api/vpe.api | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/vpp/api/vpe.api b/src/vpp/api/vpe.api index 7846b8f34d7..3db34fec3d9 100644 --- a/src/vpp/api/vpe.api +++ b/src/vpp/api/vpe.api @@ -16,14 +16,14 @@ /** \file This file defines vpe control-plane API messages which are generally - called through a shared memory interface. + called through a shared memory interface. */ -option version = "1.6.0"; +option version = "1.6.1"; import "vpp/api/vpe_types.api"; -/* +/* * Note: API placement cleanup in progress * If you're looking for interface APIs, please * see .../src/vnet/{interface.api,interface_api.c} @@ -121,7 +121,7 @@ define get_node_index { u32 client_index; u32 context; - u8 node_name[64]; + string node_name[64]; }; /** \brief Get node index using name request @@ -146,8 +146,8 @@ define add_node_next { u32 client_index; u32 context; - u8 node_name[64]; - u8 next_name[64]; + string node_name[64]; + string next_name[64]; }; /** \brief IP Set the next node for a given node response @@ -215,8 +215,8 @@ define show_threads typedef thread_data { u32 id; - u8 name[64]; - u8 type[64]; + string name[64]; + string type[64]; u32 pid; u32 cpu_id; u32 core; @@ -268,8 +268,8 @@ define get_next_index { u32 client_index; u32 context; - u8 node_name[64]; - u8 next_name[64]; + string node_name[64]; + string next_name[64]; }; /** \brief Reply for get next node index -- 2.16.6