Searched refs:ARPOP_REPLY (Results 1 – 10 of 10) sorted by relevance
64 #define ARPOP_REPLY 2 /* response to previous request */ macro102 { ARPOP_REPLY, "Reply" },315 case ARPOP_REPLY: in atmarp_print()432 case ARPOP_REPLY: in arp_print()
108 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()
107 #define ARPOP_REPLY 2 /* ARP reply */ macro
285 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()
363 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()
335 sndarp_p->hdr.ar_op = htons(ARPOP_REPLY); in return_arp_reply()
503 a->ar_op != htons(ARPOP_REPLY)) || in get_arp_pkt()
292 pub const ARPOP_REPLY: u16 = 2; constant