]> git.ipfire.org Git - people/ms/u-boot.git/blame - net/rarp.h
Merge git://www.denx.de/git/u-boot-cfi-flash
[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
698d78e5 20extern int rarp_try;
efee1709 21
8b9c5322 22/* Process the receipt of a RARP packet */
698d78e5
JH
23void rarp_receive(struct ip_udp_hdr *ip, unsigned len);
24void rarp_request(void); /* Send a RARP request */
efee1709
WD
25
26/**********************************************************************/
27
28#endif /* __RARP_H__ */
8b9c5322 29#endif