789bbb19401ba16dfe27710905ac044a645e7ca8
[vpp.git] / extras / vom / vom / api_types.hpp
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 #include <boost/asio/ip/address.hpp>
17 #include <vom/neighbour.hpp>
18 #include <vom/prefix.hpp>
19 #include <vom/types.hpp>
20
21 #include <vapi/ip.api.vapi.hpp>
22
23 namespace VOM {
24
25 typedef boost::asio::ip::address ip_address_t;
26
27 vapi_enum_ip_neighbor_flags to_api(const neighbour::flags_t& f);
28 const neighbour::flags_t from_api(vapi_enum_ip_neighbor_flags f);
29
30 void to_api(const ip_address_t& a, vapi_type_address& v);
31 void to_api(const boost::asio::ip::address_v4& a, vapi_type_ip4_address& v);
32 void to_api(const boost::asio::ip::address_v6& a, vapi_type_ip6_address& v);
33 void to_api(const boost::asio::ip::address& a,
34             vapi_union_address_union& u,
35             vapi_enum_address_family& af);
36
37 boost::asio::ip::address_v4 from_api(const vapi_type_ip4_address& v);
38 boost::asio::ip::address_v6 from_api(const vapi_type_ip6_address& v);
39 ip_address_t from_api(const vapi_type_address& v);
40 ip_address_t from_api(const vapi_union_address_union& u,
41                       vapi_enum_address_family af);
42
43 void to_api(const mac_address_t& a, vapi_type_mac_address& m);
44
45 mac_address_t from_api(const vapi_type_mac_address& v);
46
47 route::prefix_t from_api(const vapi_type_prefix&);
48 route::mprefix_t from_api(const vapi_type_mprefix&);
49
50 vapi_type_prefix to_api(const route::prefix_t&);
51 vapi_type_mprefix to_api(const route::mprefix_t&);
52 };
53
54 /*
55  * fd.io coding-style-patch-verification: ON
56  *
57  * Local Variables:
58  * eval: (c-set-style "mozilla")
59  * End:
60  */