Searched defs:ether_arp (Results 1 – 4 of 4) sorted by relevance
31 struct ether_arp { struct32 struct arphdr ea_hdr; /* fixed-size header */33 struct ether_addr arp_sha; /* sender hardware address */34 uchar_t arp_spa[4]; /* sender protocol address */35 struct ether_addr arp_tha; /* target hardware address */36 uchar_t arp_tpa[4]; /* target protocol address */
42 struct ether_arp { struct43 struct arphdr ea_hdr; /* fixed-size header */44 ether_addr_t arp_sha; /* sender hardware address */45 uchar_t arp_spa[4]; /* sender protocol address */46 ether_addr_t arp_tha; /* target hardware address */47 uchar_t arp_tpa[4]; /* target protocol address */
79 struct ether_arp { struct80 struct arphdr ea_hdr; /* fixed-size header */81 u_char arp_sha[ETHER_ADDR_LEN]; /* sender hardware address */82 u_char arp_spa[4]; /* sender protocol address */83 u_char arp_tha[ETHER_ADDR_LEN]; /* target hardware address */84 u_char arp_tpa[4]; /* target protocol address */
210 ether_arp(struct in_addr *ip, void *hap, uint32_t timeout) in ether_arp() function