2 * Copied from Linux Monitor (LiMon) - Networking.
4 * Copyright 1994 - 2000 Neil Russell.
6 * Copyright 2000 Roland Borde
7 * Copyright 2000 Paolo Scaffardi
8 * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
9 * SPDX-License-Identifier: GPL-2.0
17 extern IPaddr_t NetArpWaitPacketIP;
18 /* MAC address of waiting packet's destination */
19 extern uchar *NetArpWaitPacketMAC;
20 extern int NetArpWaitTxPacketSize;
21 extern ulong NetArpWaitTimerStart;
22 extern int NetArpWaitTry;
25 void ArpRequest(void);
26 void arp_raw_request(IPaddr_t sourceIP, const uchar *targetEther,
28 void ArpTimeoutCheck(void);
29 void ArpReceive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len);
31 #endif /* __ARP_H__ */