FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
udp.api
Go to the documentation of this file.
1 /* Hey Emacs use -*- mode: C -*- */
2 /*
3  * Copyright (c) 2018-2019 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 /**
18  * @file
19  *
20  * This file defines vpp UDP control-plane API messages which are generally
21  * called through a shared memory interface.
22  */
23 
24 option version = "1.1.0";
25 
26 import "vnet/ip/ip_types.api";
27 
28 
29 /**
30  * @brief UDP Encap object
31  * @param table_id - table ID associated with the encap destination
32  * @param dst_ip - Encap destination address
33  * @param src_ip - Encap source address
34  * @param dst_port - Encap destination port
35  * @param src_port - Encap source port
36  * @param id - VPP assigned id; ignored in add message, set in dump
37  */
38 typedef udp_encap
39 {
40  u32 table_id;
43  vl_api_address_t src_ip;
44  vl_api_address_t dst_ip;
46 };
47 
48 /**
49  * @brief Add UDP encap
50  * @param client_index - opaque cookie to identify the sender
51  * @param context - sender context, to match reply w/ request
52  * @param udp_encap - UDP encap description
53  */
54 define udp_encap_add
55 {
58  vl_api_udp_encap_t udp_encap;
59 };
60 
61 /**
62  * @brief Add UDP encap reply
63  * @param context - sender context, to match reply w/ request
64  * @param retval - success/failure return value
65  * @param id - The ID of the encap object that should be used on delete
66  * and when reading stats from the stats segment.
67  */
68 define udp_encap_add_reply
69 {
73 };
74 
75 /**
76  * @brief Del UDP encap
77  * @param client_index - opaque cookie to identify the sender
78  * @param context - sender context, to match reply w/ request
79  * @param id - ID of the encap object the client chose during the add
80 */
81 autoreply define udp_encap_del
82 {
86 };
87 
88 /**
89  * @brief dump UDP encaps
90  */
91 define udp_encap_dump
92 {
95 };
96 
97 /**
98  * @brief UDP encap details during dump
99  */
100 define udp_encap_details
101 {
103  vl_api_udp_encap_t udp_encap;
104 };
105 
106 /*
107  * Local Variables:
108  * eval: (c-set-style "gnu")
109  * End:
110  */
u16 src_port
Definition: udp.api:41
unsigned int u32
Definition: types.h:88
vl_api_udp_encap_t udp_encap
Definition: udp.api:58
unsigned short u16
Definition: types.h:57
option version
Definition: udp.api:24
signed int i32
Definition: types.h:77
vl_api_address_t src_ip
Definition: udp.api:43
typedef udp_encap
UDP Encap object.
Definition: udp.api:39
vl_api_address_t dst_ip
Definition: udp.api:44
u32 id
Definition: udp.api:45
u16 dst_port
Definition: udp.api:42
u32 table_id
Definition: fib_types.api:118
vl_api_udp_encap_t udp_encap
Definition: udp.api:103