aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/ip
diff options
context:
space:
mode:
authorJakub Grajciar <jgrajcia@cisco.com>2019-10-09 14:15:56 +0200
committerOle Trøan <otroan@employees.org>2019-10-17 14:18:50 +0000
commitf72ad93d60202b23383d625b97b8a5a2e3732815 (patch)
treecc7a38d8e619e78a41d0e89e2fa05de320302daf /src/vnet/ip
parent54f89e55d05b2079cf53818191e842f896ac3b65 (diff)
ip: punt API cleanup
Use consistent API types. Type: fix Signed-off-by: Jakub Grajciar <jgrajcia@cisco.com> Change-Id: I7048f8ec598a8b06d75bdfb5d2fab9f6337c9474 Signed-off-by: Jakub Grajciar <jgrajcia@cisco.com>
Diffstat (limited to 'src/vnet/ip')
-rw-r--r--src/vnet/ip/punt.api12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/vnet/ip/punt.api b/src/vnet/ip/punt.api
index 9890385fe5a..5004374bca6 100644
--- a/src/vnet/ip/punt.api
+++ b/src/vnet/ip/punt.api
@@ -13,7 +13,7 @@
* limitations under the License.
*/
-option version = "2.2.0";
+option version = "2.2.1";
import "vnet/ip/ip_types.api";
/** \brief The types of packets to be punted
@@ -74,7 +74,7 @@ union punt_union
typedef punt
{
vl_api_punt_type_t type;
- vl_api_punt_union_t punt;
+ vl_api_punt_union_t punt;
};
/** \brief Punt traffic to the host
@@ -86,7 +86,7 @@ typedef punt
autoreply define set_punt {
u32 client_index;
u32 context;
- u8 is_add;
+ bool is_add;
vl_api_punt_t punt;
};
@@ -101,14 +101,14 @@ define punt_socket_register {
u32 context;
u32 header_version;
vl_api_punt_t punt;
- u8 pathname[108]; /* Linux sun_path defined to be 108 bytes, see unix(7) */
+ string pathname[108]; /* Linux sun_path defined to be 108 bytes, see unix(7) */
};
define punt_socket_register_reply
{
u32 context;
i32 retval;
- u8 pathname[64];
+ string pathname[108];
};
define punt_socket_dump
@@ -122,7 +122,7 @@ define punt_socket_details
{
u32 context;
vl_api_punt_t punt;
- u8 pathname[108];
+ string pathname[108];
};
autoreply define punt_socket_deregister {