Files
Linux_Drivers/net/ex1/vnet.h
2023-12-24 10:29:22 +00:00

13 lines
171 B
C
Executable File

#ifndef __VNET_H__
#define __VNET_H__
#define DEBUG 1
struct vnet_priv {
struct sk_buff *txskb;
int rxlen;
unsigned char rxdata[ETH_DATA_LEN];
};
#endif