1SKB_PUT(9) Linux Networking SKB_PUT(9)
23
4
NAME
6skb_put - add data to a buffer
7
SYNOPSIS
9unsigned char * skb_put(struct sk_buff * skb, unsigned int len);
10
ARGUMENTS
12skb
13buffer to use
1415
len
16amount of data to add
17
DESCRIPTION
19This function extends the used data area of the buffer. If this would
20exceed the total buffer size the kernel will panic. A pointer to the
21first byte of the extra data is returned.
22
COPYRIGHT
24Kernel Hackers Manual 2.6. June 2019 SKB_PUT(9)