#define ETHERTYPE_IP 0x0800
#define ETHERTYPE_ARP 0x0806
#define ETHERMTU 1500
#define ETHERMIN
struct ether_header | |
{ | |
u_char ether_dhost[6]; | |
u_char ether_shost[6]; | |
u_short ether_type; | |
} |
struct ether_arp | |
{ | |
ARPHDR ea_hdr; | |
u_char arp_sha[6]; | |
u_long arp_spa; | |
u_char arp_tha[6]; | |
u_long arp_tpa; | |
} |