diff options
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r-- | include/linux/skbuff.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 47cc8b07c2b4..76d30f34b986 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
@@ -960,6 +960,11 @@ static inline void skb_reserve(struct sk_buff *skb, int len) | |||
960 | skb->tail += len; | 960 | skb->tail += len; |
961 | } | 961 | } |
962 | 962 | ||
963 | static inline unsigned char *skb_network_header(const struct sk_buff *skb) | ||
964 | { | ||
965 | return skb->nh.raw; | ||
966 | } | ||
967 | |||
963 | static inline void skb_reset_network_header(struct sk_buff *skb) | 968 | static inline void skb_reset_network_header(struct sk_buff *skb) |
964 | { | 969 | { |
965 | skb->nh.raw = skb->data; | 970 | skb->nh.raw = skb->data; |