1SKB_STORE_BITS(9) Linux Networking SKB_STORE_BITS(9)
2
3
4
6 skb_store_bits - store bits from kernel buffer to skb
7
9 int skb_store_bits(struct sk_buff * skb, int offset, const void * from,
10 int len);
11
13 skb
14 destination buffer
15
16 offset
17 offset in destination
18
19 from
20 source buffer
21
22 len
23 number of bytes to copy
24
26 Copy the specified number of bytes from the source buffer to the
27 destination skb. This function handles all the messy bits of traversing
28 fragment lists and such.
29
31Kernel Hackers Manual 2.6. June 2019 SKB_STORE_BITS(9)