FD.io VPP  v18.07.1-19-g511ce25
Vector Packet Processing
ip_types_api.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef __IP_TYPES_API_H__
17 #define __IP_TYPES_API_H__
18 
19 /**
20  * Conversion functions to/from (decode/encode) API types to VPP internal types
21  */
22 
23 #include <vnet/ip/ip.h>
24 #include <vnet/fib/fib_types.h>
25 
26 /**
27  * Forward declarations so we need not #include the API definitions here
28  */
29 struct _vl_api_address;
30 struct _vl_api_prefix;
31 
32 extern void ip_address_decode (const struct _vl_api_address *in,
33  ip46_address_t * out);
34 extern void ip_address_encode (const ip46_address_t * in,
35  struct _vl_api_address *out);
36 
37 extern void ip_prefix_decode (const struct _vl_api_prefix *in,
38  fib_prefix_t * out);
39 extern void ip_prefix_encode (const fib_prefix_t * in,
40  struct _vl_api_prefix *out);
41 
42 #endif
43 
44 /*
45  * fd.io coding-style-patch-verification: ON
46  *
47  * Local Variables:
48  * eval: (c-set-style "gnu")
49  * End:
50  */
void ip_prefix_encode(const fib_prefix_t *in, struct _vl_api_prefix *out)
void ip_address_encode(const ip46_address_t *in, struct _vl_api_address *out)
void ip_prefix_decode(const struct _vl_api_prefix *in, fib_prefix_t *out)
Aggregrate type for a prefix.
Definition: fib_types.h:193
void ip_address_decode(const struct _vl_api_address *in, ip46_address_t *out)