1. NAME

skb_queue_is_last - check if skb is the last entry in the queue

2. SYNOPSIS

bool skb_queue_is_last(const struct sk_buff_head *  list , const struct sk_buff *  skb );

3. ARGUMENTS

list
    queue head

skb
    buffer

4. DESCRIPTION

Returns true if skb is the last buffer on the list.

5. COPYRIGHT