blob: 93e18899c308be762ace2b867753edad82710575 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#if defined(CONFIG_CMD_RARP)
9
10#ifndef __RARP_H__
11#define __RARP_H__
12
13#include <net.h>
14
15/**********************************************************************/
16/*
17 * Global functions and variables.
18 */
19
20extern int RarpTry;
21
22/* Process the receipt of a RARP packet */
23extern void rarp_receive(struct ip_udp_hdr *ip, unsigned len);
24extern void RarpRequest(void); /* Send a RARP request */
25
26/**********************************************************************/
27
28#endif /* __RARP_H__ */
29#endif