]> git.proxmox.com Git - ovs.git/blob - lib/tnl-ports.h
datapath-windows: Avoid BSOD when switch context is NULL
[ovs.git] / lib / tnl-ports.h
1 /*
2 * Copyright (c) 2014 Nicira, Inc.
3 *
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 #ifndef TNL_PORT_H
18 #define TNL_PORT_H 1
19
20 #include <net/if.h>
21 #include <sys/socket.h>
22
23 #include "flow.h"
24 #include "packets.h"
25 #include "util.h"
26
27 odp_port_t tnl_port_map_lookup(const struct flow *flow,
28 struct flow_wildcards *wc);
29
30 void tnl_port_map_insert(odp_port_t port, ovs_be32 ip_dst, ovs_be16 udp_port,
31 const char dev_name[]);
32
33 void tnl_port_map_delete(ovs_be32 ip_dst, ovs_be16 udp_port);
34
35 void tnl_port_map_init(void);
36
37 #endif