#define ETHER_ADDR_LEN		6
#define ETHER_HDRLEN		14

struct ether_header {
	uint8_t		ether_dhost[ETHER_ADDR_LEN];
	uint8_t		ether_shost[ETHER_ADDR_LEN];
	uint16_t	ether_type;
};

#define IP_ADDR_LEN		4
#define IP_HDRLEN		5
