Home
last modified time | relevance | path

Searched refs:ARP_HDR_SIZE (Results 1 – 6 of 6) sorted by relevance

/openbmc/u-boot/net/
H A Darp.c78 net_send_packet(arp_tx_packet, eth_hdr_size + ARP_HDR_SIZE); in arp_raw_request()
142 if (len < ARP_HDR_SIZE) { in arp_receive()
143 printf("bad length %d < %d\n", len, ARP_HDR_SIZE); in arp_receive()
186 memcpy(tx_packet, et, eth_hdr_size + ARP_HDR_SIZE); in arp_receive()
187 net_send_packet(tx_packet, eth_hdr_size + ARP_HDR_SIZE); in arp_receive()
H A Drarp.c33 if (len < ARP_HDR_SIZE) { in rarp_receive()
34 printf("bad length %d < %d\n", len, ARP_HDR_SIZE); in rarp_receive()
95 net_send_packet(net_tx_packet, eth_hdr_size + ARP_HDR_SIZE); in rarp_request()
/openbmc/u-boot/drivers/net/
H A Dsandbox.c99 ETHER_HDR_SIZE + ARP_HDR_SIZE; in sandbox_eth_arp_req_to_reply()
198 ETHER_HDR_SIZE + ARP_HDR_SIZE; in sandbox_eth_recv_arp_req()
H A Dsandbox-raw.c95 length = ARP_HDR_SIZE; in sb_eth_raw_recv()
H A Dxilinx_emaclite.c503 first_read = ALIGN(ETHER_HDR_SIZE + ARP_HDR_SIZE + ETH_FCS_LEN, 4); in emaclite_recv()
/openbmc/u-boot/include/
H A Dnet.h431 #define ARP_HDR_SIZE (8+20) /* Size assuming ethernet */ macro