netdev-dpdk: fix mbuf leaks
[cascardo/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(struct flow *flow, struct flow_wildcards *wc);
28
29 void tnl_port_map_insert(odp_port_t port, ovs_be16 udp_port,
30                          const char dev_name[]);
31
32 void tnl_port_map_delete(ovs_be16 udp_port);
33 void tnl_port_map_insert_ipdev(const char dev[]);
34 void tnl_port_map_delete_ipdev(const char dev[]);
35 void tnl_port_map_run(void);
36
37 void tnl_port_map_init(void);
38
39 #endif