diff options
author | Jakub Grajciar <jgrajcia@cisco.com> | 2019-04-04 10:20:21 +0200 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2019-08-28 21:19:59 +0000 |
commit | f1f5a8a1a50efd6ac369cfe28774a344d120b71c (patch) | |
tree | 9024362701c8e5c1f24889e2b1357741ceb6e127 | |
parent | 374f706bff707b8a4bcf62cb1ff0c48d5a65b3bf (diff) |
bier: API cleanup
Use consistent API types.
Type: fix
Change-Id: I416171c729193e64a68e85a3f1f25d03a9a559d1
Signed-off-by: Jakub Grajciar <jgrajcia@cisco.com>
-rw-r--r-- | src/vnet/bier/bier.api | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/vnet/bier/bier.api b/src/vnet/bier/bier.api index 30b0478a4a3..33561524cf8 100644 --- a/src/vnet/bier/bier.api +++ b/src/vnet/bier/bier.api @@ -19,7 +19,7 @@ This file defines vpp BIER control-plane API messages which are generally called through a shared memory interface. */ -option version = "1.2.0"; +option version = "1.2.1"; import "vnet/fib/fib_types.api"; /** \brief BIER Table Identifier @@ -49,7 +49,7 @@ autoreply define bier_table_add_del u32 context; vl_api_bier_table_id_t bt_tbl_id; u32 bt_label; - u8 bt_is_add; + bool bt_is_add; }; define bier_table_dump @@ -90,8 +90,8 @@ autoreply define bier_route_add_del { u32 client_index; u32 context; - u8 br_is_add; - u8 br_is_replace; + bool br_is_add; + bool br_is_replace; vl_api_bier_route_t br_route; }; @@ -178,7 +178,7 @@ autoreply define bier_disp_table_add_del u32 client_index; u32 context; u32 bdt_tbl_id; - u8 bdt_is_add; + bool bdt_is_add; }; define bier_disp_table_dump @@ -211,7 +211,7 @@ autoreply define bier_disp_entry_add_del u32 context; u16 bde_bp; u32 bde_tbl_id; - u8 bde_is_add; + bool bde_is_add; u8 bde_payload_proto; u8 bde_n_paths; vl_api_fib_path_t bde_paths[bde_n_paths]; @@ -229,7 +229,7 @@ define bier_disp_entry_details u32 context; u16 bde_bp; u32 bde_tbl_id; - u8 bde_is_add; + bool bde_is_add; u8 bde_payload_proto; u8 bde_n_paths; vl_api_fib_path_t bde_paths[bde_n_paths]; |