Home
last modified time | relevance | path

Searched defs:ether_arp (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/netinet/
H A Darp.h31 struct ether_arp { struct
32 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 */
H A Dif_ether.h42 struct ether_arp { struct
43 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 */
/illumos-gate/usr/src/boot/include/netinet/
H A Dif_ether.h79 struct ether_arp { struct
80 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 */
/illumos-gate/usr/src/stand/lib/inet/
H A Dethernet.c210 ether_arp(struct in_addr *ip, void *hap, uint32_t timeout) in ether_arp() function