1. NAME

skb_peek_next - peek skb following the given one from a queue

2. SYNOPSIS

struct sk_buff * skb_peek_next(struct sk_buff *  skb , const struct sk_buff_head *  list_ );

3. ARGUMENTS

skb
    skb to start from

list_
    list to peek at

4. DESCRIPTION

Returns NULL when the end of the list is met or a pointer to the next element. The reference count is not incremented and the reference is therefore volatile. Use with caution.

5. COPYRIGHT