1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copied from Linux Monitor (LiMon) - Networking.
5 * Copyright 1994 - 2000 Neil Russell.
7 * Copyright 2000 Roland Borde
8 * Copyright 2000 Paolo Scaffardi
15 extern struct in_addr net_arp_wait_packet_ip;
16 /* MAC address of waiting packet's destination */
17 extern uchar *arp_wait_packet_ethaddr;
18 extern int arp_wait_tx_packet_size;
19 extern ulong arp_wait_timer_start;
20 extern int arp_wait_try;
21 extern uchar *arp_tx_packet;
24 void arp_request(void);
25 void arp_raw_request(struct in_addr source_ip, const uchar *targetEther,
26 struct in_addr target_ip);
27 int arp_timeout_check(void);
28 void arp_receive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len);
30 #endif /* __ARP_H__ */