Home
last modified time | relevance | path

Searched refs:ARPOP_REPLY (Results 1 – 10 of 10) sorted by relevance

/external/tcpdump/
Dprint-arp.c64 #define ARPOP_REPLY 2 /* response to previous request */ macro
102 { ARPOP_REPLY, "Reply" },
315 case ARPOP_REPLY: in atmarp_print()
432 case ARPOP_REPLY: in arp_print()
/external/toybox/toys/pending/
Darping.c108 arp_h->ar_op = (toys.optflags & FLAG_A) ? htons(ARPOP_REPLY) in send_packet()
138 arp_hdr->ar_op != htons(ARPOP_REPLY)) return; in recv_from()
160 arp_hdr->ar_op == htons(ARPOP_REPLY) ? "ply" : "quest", in recv_from()
/external/kernel-headers/original/uapi/linux/
Dif_arp.h107 #define ARPOP_REPLY 2 /* ARP reply */ macro
/external/iproute2/include/uapi/linux/
Dif_arp.h107 #define ARPOP_REPLY 2 /* ARP reply */ macro
/external/libnl/include/linux-private/linux/
Dif_arp.h107 #define ARPOP_REPLY 2 /* ARP reply */ macro
/external/iputils/
Darping.c285 ah->ar_op = advert ? htons(ARPOP_REPLY) : htons(ARPOP_REQUEST); in send_pack()
393 ah->ar_op != htons(ARPOP_REPLY)) in recv_pack()
443 printf("%s from ", ah->ar_op == htons(ARPOP_REPLY) ? "reply" : "request"); in recv_pack()
/external/iproute2/tc/
Df_flower.c363 case ARPOP_REPLY: in flower_print_arp_op_to_name()
375 *op = ARPOP_REPLY; in flower_arp_op_from_name()
384 return !op || op == ARPOP_REQUEST || op == ARPOP_REPLY; in flow_arp_op_validate()
/external/ltp/testcases/network/stress/ns-tools/
Dns-icmp_redirector.c335 sndarp_p->hdr.ar_op = htons(ARPOP_REPLY); in return_arp_reply()
/external/iproute2/misc/
Darpd.c503 a->ar_op != htons(ARPOP_REPLY)) || in get_arp_pkt()
/external/rust/crates/libc/src/unix/
Dmod.rs292 pub const ARPOP_REPLY: u16 = 2; constant