d23f4aff29e9fca1d2eaf1b74c50695e14f1bd3b
[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 sbrec_port_binding;
22
23 struct ipv4_netaddr {
24     ovs_be32 addr;
25     unsigned int plen;
26 };
27
28 struct ipv6_netaddr {
29     struct in6_addr addr;
30     unsigned int plen;
31 };
32
33 struct lport_addresses {
34     struct eth_addr ea;
35     size_t n_ipv4_addrs;
36     struct ipv4_netaddr *ipv4_addrs;
37     size_t n_ipv6_addrs;
38     struct ipv6_netaddr *ipv6_addrs;
39 };
40
41 bool
42 extract_lsp_addresses(char *address, struct lport_addresses *laddrs,
43                       bool store_ipv6);
44
45 char *
46 alloc_nat_zone_key(const struct sbrec_port_binding *port_binding,
47                    const char *type);
48 #endif