Merge branch 'next'
[u-boot/qq2440-u-boot.git] / net / rarp.h
blob93e18899c308be762ace2b867753edad82710575
1 /*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * SPDX-License-Identifier: GPL-2.0+
6 */
8 #if defined(CONFIG_CMD_RARP)
10 #ifndef __RARP_H__
11 #define __RARP_H__
13 #include <net.h>
15 /**********************************************************************/
17 * Global functions and variables.
20 extern int RarpTry;
22 /* Process the receipt of a RARP packet */
23 extern void rarp_receive(struct ip_udp_hdr *ip, unsigned len);
24 extern void RarpRequest(void); /* Send a RARP request */
26 /**********************************************************************/
28 #endif /* __RARP_H__ */
29 #endif