aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/vxlan-gbp/vxlan_gbp.api
diff options
context:
space:
mode:
authorNeale Ranns <nranns@cisco.com>2018-09-11 07:39:43 -0700
committerDamjan Marion <dmarion@me.com>2018-09-12 10:11:18 +0000
commit79a05f547146e1eb972ec505e6605f604d3a3054 (patch)
treedf2d62133079b395b0694732df47059b32c34183 /src/vnet/vxlan-gbp/vxlan_gbp.api
parent0b48cdead5adf07fe684bd909a6f5282e249184c (diff)
VXLAN-GBP: use common types on the API
Change-Id: I11ec0d7048d36c30a97d437e5b0abd05f06ab0eb Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/vxlan-gbp/vxlan_gbp.api')
-rw-r--r--src/vnet/vxlan-gbp/vxlan_gbp.api60
1 files changed, 29 insertions, 31 deletions
diff --git a/src/vnet/vxlan-gbp/vxlan_gbp.api b/src/vnet/vxlan-gbp/vxlan_gbp.api
index ecb5ba27f18..6e41ec8b2b9 100644
--- a/src/vnet/vxlan-gbp/vxlan_gbp.api
+++ b/src/vnet/vxlan-gbp/vxlan_gbp.api
@@ -1,3 +1,4 @@
+/* Hey Emacs use -*- mode: C -*- */
/*
* Copyright (c) 2018 Cisco and/or its affiliates.
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,39 +14,45 @@
* limitations under the License.
*/
-option version = "1.0.0";
+option version = "1.1.0";
+import "vnet/ip/ip_types.api";
-/** \brief Create or delete a VXLAN-GBP tunnel
- @param client_index - opaque cookie to identify the sender
- @param context - sender context, to match reply w/ request
- @param is_add - Use 1 to create the tunnel, 0 to remove it
- @param is_ipv6 - Use 0 for IPv4, 1 for IPv6
+/** \brief Definition of a VXLAN GBP tunnel
@param instance - optional unique custom device instance, else ~0.
- @param src_address - Source IP address
- @param dst_address - Destination IP address, can be multicast
+ @param src - Source IP address
+ @param dst - Destination IP address, can be multicast
@param mcast_sw_if_index - Interface for multicast destination
- @param encap_vrf_id - Encap route table FIB index
+ @param encap_table_id - Encap route table
@param decap_next_index - Name of decap next graph node
@param vni - The VXLAN Network Identifier, uint24
- @param sclass - The policy group id
+ @param sw_ifindex - Ignored in add message, set in details
*/
-define vxlan_gbp_add_del_tunnel
+typedef vxlan_gbp_tunnel
{
- u32 client_index;
- u32 context;
- u8 is_add;
- u8 is_ipv6;
- u32 instance; /* If non-~0, specifies a custom dev instance */
- u8 src_address[16];
- u8 dst_address[16];
+ u32 instance;
+ vl_api_address_t src;
+ vl_api_address_t dst;
u32 mcast_sw_if_index;
- u32 encap_vrf_id;
+ u32 encap_table_id;
u32 decap_next_index;
u32 vni;
- u16 sclass;
+ u32 sw_if_index;
};
-define vxlan_gbp_add_del_tunnel_reply
+/** \brief Create or delete a VXLAN-GBP tunnel
+ @param client_index - opaque cookie to identify the sender
+ @param context - sender context, to match reply w/ request
+ @param is_add - Use 1 to create the tunnel, 0 to remove it
+*/
+define vxlan_gbp_tunnel_add_del
+{
+ u32 client_index;
+ u32 context;
+ u8 is_add;
+ vl_api_vxlan_gbp_tunnel_t tunnel;
+};
+
+define vxlan_gbp_tunnel_add_del_reply
{
u32 context;
i32 retval;
@@ -62,16 +69,7 @@ define vxlan_gbp_tunnel_dump
define vxlan_gbp_tunnel_details
{
u32 context;
- u32 sw_if_index;
- u32 instance;
- u8 src_address[16];
- u8 dst_address[16];
- u32 mcast_sw_if_index;
- u32 encap_vrf_id;
- u32 decap_next_index;
- u32 vni;
- u16 sclass;
- u8 is_ipv6;
+ vl_api_vxlan_gbp_tunnel_t tunnel;
};
/** \brief Interface set vxlan-bypass request