June 7th, 2007 by
paolo
Updated version of this article coming soon : new informations, configuration tips, hacks and more
Learn how to configure Gentoo ( and other GNU / Linux distributions ) on a Powerbook G4 12” Super !
Read the rest of this entry »
Posted in Linux |
2 Comments »
November 8th, 2005 by
paolo
Author: Paolo Ardoino
skbuff are buffers used by Linux network layers ; its structure is defined in <linux/skbuff.h> .
skbuffs are linked lists as we can easily see :
1
2
3
| /* These two members must be first . */
struct sk_buff *next; // Next buffer in list
struct sk_buff *prev; // Previous buffer in list |
Follows the description of all fields of the structure taken from the header file:
Read the rest of this entry »
Posted in Linux |
1 Comment »