]> Git Repo - u-boot.git/blob - net/arp.h
net: cosmetic: Un-typedef ARP_t
[u-boot.git] / net / arp.h
1 /*
2  *      Copied from Linux Monitor (LiMon) - Networking.
3  *
4  *      Copyright 1994 - 2000 Neil Russell.
5  *      (See License)
6  *      Copyright 2000 Roland Borde
7  *      Copyright 2000 Paolo Scaffardi
8  *      Copyright 2000-2002 Wolfgang Denk, [email protected]
9  */
10
11 #ifndef __ARP_H__
12 #define __ARP_H__
13
14 #include <common.h>
15
16 extern IPaddr_t NetArpWaitPacketIP;
17 /* MAC address of waiting packet's destination */
18 extern uchar *NetArpWaitPacketMAC;
19 /* THE transmit packet */
20 extern uchar *NetArpWaitTxPacket;
21 extern int NetArpWaitTxPacketSize;
22 extern ulong NetArpWaitTimerStart;
23 extern int NetArpWaitTry;
24
25 void ArpInit(void);
26 void ArpRequest(void);
27 void ArpTimeoutCheck(void);
28 void ArpReceive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len);
29
30 #endif /* __ARP_H__ */
This page took 0.027177 seconds and 4 git commands to generate.