FD.io VPP  v20.09-64-g4f7b92f0a
Vector Packet Processing
cnat.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 /** \file
18  This file defines the vpp control-plane API messages
19  used to control the ABF plugin
20 */
21 
22 option version = "0.1.0";
23 import "vnet/ip/ip_types.api";
24 import "vnet/fib/fib_types.api";
25 
27 {
29 };
30 
31 typedef cnat_endpoint
32 {
33  vl_api_address_t addr;
35 };
36 
37 typedef cnat_endpoint_tuple
38 {
39  vl_api_cnat_endpoint_t dst_ep;
40  vl_api_cnat_endpoint_t src_ep;
41 };
42 
43 typedef cnat_translation
44 {
45  vl_api_cnat_endpoint_t vip;
47  vl_api_ip_proto_t ip_proto;
51  vl_api_cnat_endpoint_tuple_t paths[n_paths];
52 };
53 
55 {
58  vl_api_cnat_translation_t translation;
59 };
60 
61 define cnat_translation_update_reply
62 {
66 };
67 
68 autoreply define cnat_translation_del
69 {
73 };
74 
75 define cnat_translation_details
76 {
78  vl_api_cnat_translation_t translation;
79 };
80 
81 define cnat_translation_dump
82 {
85 };
86 
87 autoreply define cnat_session_purge
88 {
91 };
92 
93 typedef cnat_session
94 {
95  vl_api_cnat_endpoint_t src;
96  vl_api_cnat_endpoint_t dst;
97  vl_api_cnat_endpoint_t new;
98  vl_api_ip_proto_t ip_proto;
100 };
101 
102 define cnat_session_details
103 {
105  vl_api_cnat_session_t session;
106 };
107 
108 define cnat_session_dump
109 {
112 };
113 
114 autoreply define cnat_set_snat_addresses
115 {
118  vl_api_ip4_address_t snat_ip4;
119  vl_api_ip6_address_t snat_ip6;
120 };
121 
122 autoreply define cnat_add_del_snat_prefix
123 {
127  vl_api_prefix_t prefix;
128 };
129 
130 /*
131  * fd.io coding-style-patch-verification: ON
132  *
133  * Local Variables:
134  * eval: (c-set-style "gnu")
135  * End:
136  */
u8 flags
Definition: cnat.api:49
typedef cnat_endpoint
Definition: cnat.api:32
typedef cnat_endpoint_tuple
Definition: cnat.api:38
vl_api_ip6_address_t snat_ip6
Definition: cnat.api:119
vl_api_cnat_endpoint_tuple_t paths[n_paths]
Definition: cnat.api:51
vl_api_address_t src
Definition: gre.api:54
typedef cnat_translation
Definition: cnat.api:44
vhost_vring_addr_t addr
Definition: vhost_user.h:111
vl_api_ip_proto_t ip_proto
Definition: cnat.api:47
unsigned char u8
Definition: types.h:56
vl_api_cnat_translation_t translation
Definition: cnat.api:58
double f64
Definition: types.h:142
int cnat_session_purge(void)
Purge all the sessions.
Definition: cnat_session.c:140
u32 cnat_translation_update(const cnat_endpoint_t *vip, ip_protocol_t proto, const cnat_endpoint_tuple_t *paths, u8 flags)
create or update a translation
u32 id
Definition: cnat.api:46
unsigned int u32
Definition: types.h:88
vl_api_cnat_session_t session
Definition: cnat.api:105
f64 timestamp
Definition: cnat.api:99
unsigned short u16
Definition: types.h:57
u16 port
Definition: cnat.api:34
option version
Definition: cnat.api:22
signed int i32
Definition: types.h:77
vl_api_ip4_address_t snat_ip4
Definition: cnat.api:118
vl_api_cnat_endpoint_t dst
Definition: cnat.api:96
u8 is_real_ip
Definition: cnat.api:48
vl_api_cnat_translation_t translation
Definition: cnat.api:78
cnat_translation_flags
Definition: cnat.api:26
u8 n_paths
Definition: cnat.api:50
typedef cnat_session
Definition: cnat.api:94
vl_api_cnat_endpoint_t src_ep
Definition: cnat.api:40