netdev-vport: Build on all platforms.
[sliver-openvswitch.git] / lib / netdev-vport.h
1 /*
2  * Copyright (c) 2010, 2011 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 NETDEV_VPORT_H
18 #define NETDEV_VPORT_H 1
19
20 #include <stdbool.h>
21
22 struct dpif_linux_vport;
23 struct dpif_flow_stats;
24 struct netdev;
25 struct netdev_stats;
26
27 void netdev_vport_tunnel_register(void);
28 void netdev_vport_patch_register(void);
29
30 bool netdev_vport_is_patch(const struct netdev *);
31
32 const char *netdev_vport_patch_peer(const struct netdev *netdev);
33
34 void netdev_vport_inc_rx(const struct netdev *,
35                          const struct dpif_flow_stats *);
36 void netdev_vport_inc_tx(const struct netdev *,
37                          const struct dpif_flow_stats *);
38
39 const char *netdev_vport_get_dpif_port(const struct netdev *);
40
41 #endif /* netdev-vport.h */