repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
x86/mpx: Correctly report do_mpx_bt_fault() failures to user-space
[linux/fpc-iii.git]
/
include
/
net
/
esp.h
blob
a43be85aedc44594265695e98452ae491b852d83
1
#ifndef _NET_ESP_H
2
#define _NET_ESP_H
3
4
#include <linux/skbuff.h>
5
6
struct
ip_esp_hdr
;
7
8
static
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