]> git.ipfire.org Git - people/ms/u-boot.git/blame - net/rarp.h
arc: hard-code CONFIG_ARCH_EARLY_INIT_R in asm/config.h
[people/ms/u-boot.git] / net / rarp.h
CommitLineData
efee1709
WD
1/*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
efee1709
WD
6 */
7
8b9c5322 8#if defined(CONFIG_CMD_RARP)
efee1709
WD
9
10#ifndef __RARP_H__
11#define __RARP_H__
12
efee1709 13#include <net.h>
efee1709
WD
14
15/**********************************************************************/
16/*
17 * Global functions and variables.
18 */
19
c2faf4f9 20extern int RarpTry;
efee1709 21
8b9c5322 22/* Process the receipt of a RARP packet */
594c26f8 23extern void rarp_receive(struct ip_udp_hdr *ip, unsigned len);
c2faf4f9 24extern void RarpRequest(void); /* Send a RARP request */
efee1709
WD
25
26/**********************************************************************/
27
28#endif /* __RARP_H__ */
8b9c5322 29#endif