diff options
author | Alberto Compagno <acompagn+fdio@cisco.com> | 2019-04-02 11:13:43 +0200 |
---|---|---|
committer | Alberto Compagno <acompagn+fdio@cisco.com> | 2019-04-02 11:13:43 +0200 |
commit | 84b72f153e9d125aa276e1cb5a05b9380a557171 (patch) | |
tree | 040299843af972b98793d5a53b1145acb0896b1f /hicn-plugin/src/hicn.api | |
parent | 508bbc426747750cfa7171a0ae1d1c777c98a800 (diff) |
[HICN-158] Fixed ip face deletion from binary api
Change-Id: I7a793e3664e30f765861fd5153c99fecb47ce863
Signed-off-by: Alberto Compagno <acompagn+fdio@cisco.com>
Diffstat (limited to 'hicn-plugin/src/hicn.api')
-rw-r--r-- | hicn-plugin/src/hicn.api | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hicn-plugin/src/hicn.api b/hicn-plugin/src/hicn.api index 48e2eace5..0debf25c5 100644 --- a/hicn-plugin/src/hicn.api +++ b/hicn-plugin/src/hicn.api @@ -199,7 +199,7 @@ define hicn_api_face_ip_del u32 context; /* A Face ID to be deleted */ - u16 faceid; + u32 faceid; }; define hicn_api_face_ip_del_reply @@ -220,7 +220,7 @@ define hicn_api_face_ip_params_get u32 context; /* A Face to be retrieved */ - u16 faceid; + u32 faceid; }; define hicn_api_face_stats_details @@ -354,7 +354,7 @@ define hicn_api_route_nhop_del u8 len; /* Specific next-hop to be removed */ - u16 faceid; + u32 faceid; }; define hicn_api_route_nhop_del_reply @@ -390,7 +390,7 @@ define hicn_api_route_get_reply u32 context; /* List of faces pointing to the next hops */ - u16 faceids[1000]; + u32 faceids[1000]; /* Strategy */ u32 strategy_id; |