swh:1:snp:32555a3fd8878f019c2ebd6c964bc1edcaeff337
Raw File
Tip revision: 455c6fdbd219161bd09b1165f11699d6d73de11c authored by Linus Torvalds on 31 March 2014, 03:40:15 UTC
Linux 3.14
Tip revision: 455c6fd
esp.h
#ifndef _NET_ESP_H
#define _NET_ESP_H

#include <linux/skbuff.h>

struct ip_esp_hdr;

static inline struct ip_esp_hdr *ip_esp_hdr(const struct sk_buff *skb)
{
	return (struct ip_esp_hdr *)skb_transport_header(skb);
}

#endif
back to top