1SKB_APPEND(9) Linux Networking SKB_APPEND(9)
2
3
4
6 skb_append - append a buffer
7
9 void skb_append(struct sk_buff * old, struct sk_buff * newsk,
10 struct sk_buff_head * list);
11
13 old
14 buffer to insert after
15
16 newsk
17 buffer to insert
18
19 list
20 list to use
21
23 Place a packet after a given packet in a list. The list locks are taken
24 and this function is atomic with respect to other list locked calls. A
25 buffer cannot be placed on two lists at the same time.
26
28Kernel Hackers Manual 2.6. June 2019 SKB_APPEND(9)