aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/skbuff.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 7c1f1756e482..64c3c1687e49 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -962,6 +962,11 @@ static inline void skb_reset_transport_header(struct sk_buff *skb)
962 skb->h.raw = skb->data; 962 skb->h.raw = skb->data;
963} 963}
964 964
965static inline int skb_transport_offset(const struct sk_buff *skb)
966{
967 return skb->h.raw - skb->data;
968}
969
965static inline unsigned char *skb_network_header(const struct sk_buff *skb) 970static inline unsigned char *skb_network_header(const struct sk_buff *skb)
966{ 971{
967 return skb->nh.raw; 972 return skb->nh.raw;