| The Linux Kernel API | ||
|---|---|---|
| <<< Previous | Next >>> | |
struct sk_buff {
struct sk_buff * next;
struct sk_buff * prev;
struct sk_buff_head * list;
struct sock * sk;
struct timeval stamp;
struct net_device * dev;
struct net_device * real_dev;
union private;
#endif#ifdef CONFIG_NET_SCHED__u32 tc_index;
#endifunsigned int truesize;
atomic_t users;
}; |
Next buffer in list
Previous buffer in list
List we are on
Socket we are owned by
Time we arrived
Device we arrived on/are leaving by
The real device we are using
Data which is private to the HIPPI implementation
Traffic control index
Buffer size
User count - see {datagram,tcp}.c
| <<< Previous | Home | Next >>> |
| Linux Networking | Up | skb_queue_empty |