Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 0f50a49e3008597abed0fff052d487f77db89093 19 lines 510 B view raw
1#ifndef __NET_FOU_H 2#define __NET_FOU_H 3 4#include <linux/skbuff.h> 5 6#include <net/flow.h> 7#include <net/gue.h> 8#include <net/ip_tunnels.h> 9#include <net/udp.h> 10 11size_t fou_encap_hlen(struct ip_tunnel_encap *e); 12size_t gue_encap_hlen(struct ip_tunnel_encap *e); 13 14int __fou_build_header(struct sk_buff *skb, struct ip_tunnel_encap *e, 15 u8 *protocol, __be16 *sport, int type); 16int __gue_build_header(struct sk_buff *skb, struct ip_tunnel_encap *e, 17 u8 *protocol, __be16 *sport, int type); 18 19#endif