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

Configure Feed

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

at v3.16-rc4 13 lines 225 B view raw
1#ifndef _NET_ESP_H 2#define _NET_ESP_H 3 4#include <linux/skbuff.h> 5 6struct ip_esp_hdr; 7 8static inline struct ip_esp_hdr *ip_esp_hdr(const struct sk_buff *skb) 9{ 10 return (struct ip_esp_hdr *)skb_transport_header(skb); 11} 12 13#endif