diff options
author | Neale Ranns <nranns@cisco.com> | 2019-12-29 23:55:18 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2020-01-27 20:40:30 +0000 |
commit | 59ff918ea5b86112ffc89054aa38107703354585 (patch) | |
tree | 0e6dc887ead19b7be828954a08b1e15da81ddb58 /src/vnet/gre/gre.api | |
parent | 3b37125bdb0251181f90a429a4532b339711cf89 (diff) |
tunnel: Common types for IP tunnels
Type: refactor
Signed-off-by: Neale Ranns <nranns@cisco.com>
Change-Id: I18dcdb7af3e327f6cacdbcb1e52b89f13d6ba6e2
Diffstat (limited to 'src/vnet/gre/gre.api')
-rw-r--r-- | src/vnet/gre/gre.api | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/src/vnet/gre/gre.api b/src/vnet/gre/gre.api index d79beebb94d..0a98178ca87 100644 --- a/src/vnet/gre/gre.api +++ b/src/vnet/gre/gre.api @@ -14,9 +14,10 @@ * limitations under the License. */ -option version = "2.0.1"; +option version = "2.0.2"; import "vnet/interface_types.api"; +import "vnet/tunnel/tunnel_types.api"; import "vnet/ip/ip_types.api"; /** \brief A GRE tunnel type @@ -28,16 +29,6 @@ enum gre_tunnel_type : u8 GRE_API_TUNNEL_TYPE_ERSPAN, }; -/** \brief A GRE tunnel mode -*/ -enum gre_tunnel_mode : u8 -{ - /* point-to-point */ - GRE_API_TUNNEL_MODE_P2P, - /* multi-point */ - GRE_API_TUNNEL_MODE_MP, -}; - /** \brief A GRE tunnel @param client_index - opaque cookie to identify the sender @param context - sender context, to match reply w/ request @@ -52,7 +43,7 @@ enum gre_tunnel_mode : u8 typedef gre_tunnel { vl_api_gre_tunnel_type_t type; - vl_api_gre_tunnel_mode_t mode; + vl_api_tunnel_mode_t mode; u16 session_id; u32 instance; u32 outer_table_id; |