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 d3f186230ee2..39a6da243b24 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
@@ -951,6 +951,11 @@ static inline void skb_reserve(struct sk_buff *skb, int len) | |||
951 | skb->tail += len; | 951 | skb->tail += len; |
952 | } | 952 | } |
953 | 953 | ||
954 | static inline unsigned char *skb_transport_header(const struct sk_buff *skb) | ||
955 | { | ||
956 | return skb->h.raw; | ||
957 | } | ||
958 | |||
954 | static inline void skb_reset_transport_header(struct sk_buff *skb) | 959 | static inline void skb_reset_transport_header(struct sk_buff *skb) |
955 | { | 960 | { |
956 | skb->h.raw = skb->data; | 961 | skb->h.raw = skb->data; |