diff options
author | Alberto Compagno <acompagn+fdio@cisco.com> | 2019-12-02 19:41:05 +0000 |
---|---|---|
committer | Alberto Compagno <acompagn+fdio@cisco.com> | 2019-12-04 10:23:52 +0000 |
commit | da298bde46abb855cbdf7818bb34a0b5339060cc (patch) | |
tree | b7c6818520834666768dc44d5afaa8a293653e67 /hicn-plugin/src/hicn.api | |
parent | a90afcecc8029648c0e4ef2b79234eca8c31eac9 (diff) |
[HICN-427] Producer and consumer socket created with vapi
Signed-off-by: Alberto Compagno <acompagn+fdio@cisco.com>
Change-Id: I44142385b191b4c9b5c4bb418bfbd06a5e102eec
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 50a6f6a64..673f67c43 100644 --- a/hicn-plugin/src/hicn.api +++ b/hicn-plugin/src/hicn.api @@ -717,7 +717,7 @@ define hicn_api_register_prod_app u32 client_index; /* Arbitrary context, so client can match reply to request */ - u64 context; + u32 context; /* Prefix to match */ vl_api_prefix_t prefix; @@ -732,7 +732,7 @@ define hicn_api_register_prod_app define hicn_api_register_prod_app_reply { /* From the request */ - u64 context; + u32 context; /* Return value, zero means all OK */ i32 retval; @@ -765,7 +765,7 @@ define hicn_api_register_cons_app u32 client_index; /* Arbitrary context, so client can match reply to request */ - u64 context; + u32 context; /* swif */ u32 swif; @@ -774,7 +774,7 @@ define hicn_api_register_cons_app define hicn_api_register_cons_app_reply { /* From the request */ - u64 context; + u32 context; /* Return value, zero means all OK */ i32 retval; |