]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/net/esp.h
net_sched: replace pr_warning with pr_warn
[mirror_ubuntu-bionic-kernel.git] / include / net / esp.h
CommitLineData
1da177e4
LT
1#ifndef _NET_ESP_H
2#define _NET_ESP_H
3
38320c70 4#include <linux/skbuff.h>
1da177e4 5
87bdc48d
HX
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
1da177e4 13#endif