FD.io VPP  v18.01.1-37-g7ea3975
Vector Packet Processing
ioam_vxlan_gpe.api
Go to the documentation of this file.
1 /* Hey Emacs use -*- mode: C -*- */
2 /*
3  * Copyright (c) 2016 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 vl_api_version 1.0.0
18 
19 /** \brief iOAM Over VxLAN-GPE - Set iOAM transport for VxLAN-GPE
20  @param client_index - opaque cookie to identify the sender
21  @param context - sender context, to match reply w/ request
22  @param id - profile id
23  @param trace_ppc - Trace PPC (none/encap/decap)
24  @param pow_enable - Proof of Work enabled or not flag
25  @param trace_enable - iOAM Trace enabled or not flag
26 
27 */
28 autoreply define vxlan_gpe_ioam_enable {
35 };
36 
37 /** \brief iOAM for VxLAN-GPE disable
38  @param client_index - opaque cookie to identify the sender
39  @param context - sender context, to match reply w/ request
40  @param id - profile id
41 */
42 autoreply define vxlan_gpe_ioam_disable
43 {
47 };
48 
49 /** \brief Enable iOAM for a VNI (VXLAN-GPE)
50  @param client_index - opaque cookie to identify the sender
51  @param context - sender context, to match reply w/ request
52  @param vni - VXLAN-GPE VNI
53  @param local - IPv4/6 Address of the local VTEP
54  @param remote - IPv4/6 Address of the remote VTEP
55 
56 */
57 autoreply define vxlan_gpe_ioam_vni_enable {
61  u8 local[16];
62  u8 remote[16];
64 };
65 
66 /** \brief Disable iOAM for a VNI (VXLAN-GPE)
67  @param client_index - opaque cookie to identify the sender
68  @param context - sender context, to match reply w/ request
69  @param vni - VXLAN-GPE VNI
70  @param local - IPv4/6 Address of the local VTEP
71  @param remote - IPv4/6 Address of the remote VTEP
72 
73 */
74 autoreply define vxlan_gpe_ioam_vni_disable {
78  u8 local[16];
79  u8 remote[16];
81 };
82 
83 /** \brief Enable iOAM for a VXLAN-GPE transit
84  @param client_index - opaque cookie to identify the sender
85  @param context - sender context, to match reply w/ request
86  @param dst_addr - IPv4/6 Address of the local VTEP
87  @param outer_fib_index- FIB index
88 
89 */
90 autoreply define vxlan_gpe_ioam_transit_enable {
94  u8 dst_addr[16];
96 };
97 
98 /** \brief Disable iOAM for VXLAN-GPE transit
99  @param client_index - opaque cookie to identify the sender
100  @param context - sender context, to match reply w/ request
101  @param dst_addr - IPv4/6 Address of the local VTEP
102  @param outer_fib_index- FIB index
103 
104 */
105 autoreply define vxlan_gpe_ioam_transit_disable {
109  u8 dst_addr[16];
111 };
112 
clib_error_t * vxlan_gpe_ioam_enable(int has_trace_option, int has_pot_option, int has_ppc_option)
#define vl_api_version(n, v)
Definition: jvpp_registry.c:18
clib_error_t * vxlan_gpe_ioam_disable(int has_trace_option, int has_pot_option, int has_ppc_option)
unsigned int u32
Definition: types.h:88
unsigned short u16
Definition: types.h:57
unsigned char u8
Definition: types.h:56