skb_queue_next (9) - Linux Manuals
skb_queue_next: return the next packet in the queue
NAME
skb_queue_next - return the next packet in the queue
SYNOPSIS
-
struct sk_buff * skb_queue_next(const struct sk_buff_head
* list, const struct sk_buff* skb);
ARGUMENTS
list
-
- queue head
skb
- current buffer
DESCRIPTION
Return the next packet in list after skb. It is only valid to call this if skb_queue_is_last evaluates to false.
COPYRIGHT