Home
last modified time | relevance | path

Searched refs:arp_reply (Results 1 – 3 of 3) sorted by relevance

/external/qemu/slirp/
Dslirp.c601 uint8_t arp_reply[ETH_HLEN + sizeof(struct arphdr)]; in arp_input() local
602 struct ethhdr *reh = (struct ethhdr *)arp_reply; in arp_input()
603 struct arphdr *rah = (struct arphdr *)(arp_reply + ETH_HLEN); in arp_input()
637 slirp_output(arp_reply, sizeof(arp_reply)); in arp_input()
/external/qemu/slirp-android/
Dslirp.c682 uint8_t arp_reply[ETH_HLEN + sizeof(struct arphdr)]; in arp_input() local
683 struct ethhdr *reh = (struct ethhdr *)arp_reply; in arp_input()
684 struct arphdr *rah = (struct arphdr *)(arp_reply + ETH_HLEN); in arp_input()
722 slirp_output(arp_reply, sizeof(arp_reply)); in arp_input()
/external/dhcpcd/
Dclient.c1604 uint8_t arp_reply[sizeof(reply) + 2 * sizeof(reply_s) + 2 * HWADDR_LEN]; in handle_arp_packet() local
1612 arp_reply, sizeof(arp_reply)); in handle_arp_packet()
1618 memcpy(&reply, arp_reply, sizeof(reply)); in handle_arp_packet()
1630 hw_s = arp_reply + sizeof(reply); in handle_arp_packet()
1633 if ((hw_t + reply.ar_hln + reply.ar_pln) - arp_reply > bytes) in handle_arp_packet()