1SKB_PULL(9) Linux Networking SKB_PULL(9)
2
3
4
6 skb_pull - remove data from the start of a buffer
7
9 unsigned char * skb_pull(struct sk_buff * skb, unsigned int len);
10
12 skb
13 buffer to use
14
15 len
16 amount of data to remove
17
19 This function removes data from the start of a buffer, returning the
20 memory to the headroom. A pointer to the next data in the buffer is
21 returned. Once the data has been pulled future pushes will overwrite
22 the old data.
23
25Kernel Hackers Manual 2.6. June 2019 SKB_PULL(9)