#ifndef _NETPKT_H #define _NETPKT_H #include #include #include #include "list.h" struct net_pkt { /* must be first */ struct list_head list; struct sockaddr_in addr; unsigned int size; unsigned char buf[0]; }; #endif