]> git.proxmox.com Git - mirror_ovs.git/blame - lib/tnl-ports.h
netdev-offload-tc: Use single 'once' variable for probing tc features
[mirror_ovs.git] / lib / tnl-ports.h
CommitLineData
a36de779
PS
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
2e0bded4 27odp_port_t tnl_port_map_lookup(struct flow *flow, struct flow_wildcards *wc);
a36de779 28
c8025aee 29void tnl_port_map_insert(odp_port_t, ovs_be16 tp_port,
98e3f58e 30 const char dev_name[], const char type[]);
a36de779 31
c8025aee 32void tnl_port_map_delete(odp_port_t, const char type[]);
7f9b8504
PS
33void tnl_port_map_insert_ipdev(const char dev[]);
34void tnl_port_map_delete_ipdev(const char dev[]);
35void tnl_port_map_run(void);
a36de779
PS
36
37void tnl_port_map_init(void);
38
39#endif