Home
last modified time | relevance | path

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

/external/u-boot/net/
Darp.c79 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()
185 memcpy(net_tx_packet, et, eth_hdr_size + ARP_HDR_SIZE); in arp_receive()
186 net_send_packet(net_tx_packet, eth_hdr_size + ARP_HDR_SIZE); in arp_receive()
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()
/external/u-boot/drivers/net/
Dsandbox-raw.c98 length = ARP_HDR_SIZE; in sb_eth_raw_recv()
Dsandbox.c110 ARP_HDR_SIZE; in sb_eth_send()
Dxilinx_emaclite.c503 first_read = ALIGN(ETHER_HDR_SIZE + ARP_HDR_SIZE + ETH_FCS_LEN, 4); in emaclite_recv()
/external/u-boot/include/
Dnet.h438 #define ARP_HDR_SIZE (8+20) /* Size assuming ethernet */ macro