ovn: Move extract_lport_addresses
[cascardo/ovs.git] / ovn / lib / ovn-util.h
1 /*
2  * Licensed under the Apache License, Version 2.0 (the "License");
3  * you may not use this file except in compliance with the License.
4  * You may obtain a copy of the License at:
5  *
6  *     http://www.apache.org/licenses/LICENSE-2.0
7  *
8  * Unless required by applicable law or agreed to in writing, software
9  * distributed under the License is distributed on an "AS IS" BASIS,
10  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11  * See the License for the specific language governing permissions and
12  * limitations under the License.
13  */
14
15
16 #ifndef OVN_UTIL_H
17 #define OVN_UTIL_H 1
18
19 #include "lib/packets.h"
20
21 struct ipv4_netaddr {
22     ovs_be32 addr;
23     unsigned int plen;
24 };
25
26 struct ipv6_netaddr {
27     struct in6_addr addr;
28     unsigned int plen;
29 };
30
31 struct lport_addresses {
32     struct eth_addr ea;
33     size_t n_ipv4_addrs;
34     struct ipv4_netaddr *ipv4_addrs;
35     size_t n_ipv6_addrs;
36     struct ipv6_netaddr *ipv6_addrs;
37 };
38
39 bool
40 extract_lport_addresses(char *address, struct lport_addresses *laddrs,
41                         bool store_ipv6);
42
43
44 #endif