3ac816b51774a7c657f872d995bab53cdf5861ad
[sliver-openvswitch.git] / datapath / linux / compat / include / net / vxlan.h
1 #ifndef __NET_VXLAN_WRAPPER_H
2 #define __NET_VXLAN_WRAPPER_H  1
3
4 #include <linux/skbuff.h>
5 #include <linux/netdevice.h>
6 #include <linux/udp.h>
7
8 struct vxlan_sock;
9 typedef void (vxlan_rcv_t)(struct vxlan_sock *vs, struct sk_buff *skb, __be32 key);
10
11 /* per UDP socket information */
12 struct vxlan_sock {
13         struct hlist_node hlist;
14         vxlan_rcv_t      *rcv;
15         void             *data;
16         struct work_struct del_work;
17         struct socket    *sock;
18         struct rcu_head   rcu;
19 };
20
21 struct vxlan_sock *vxlan_sock_add(struct net *net, __be16 port,
22                                   vxlan_rcv_t *rcv, void *data,
23                                   bool no_share);
24
25 void vxlan_sock_release(struct vxlan_sock *vs);
26
27 int vxlan_xmit_skb(struct vxlan_sock *vs,
28                    struct rtable *rt, struct sk_buff *skb,
29                    __be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
30                    __be16 src_port, __be16 dst_port, __be32 vni);
31
32 __be16 vxlan_src_port(__u16 port_min, __u16 port_max, struct sk_buff *skb);
33
34 #endif