]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
efee1709 WD |
2 | /* |
3 | * (C) Copyright 2000 | |
4 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
efee1709 WD |
5 | */ |
6 | ||
8b9c5322 | 7 | #if defined(CONFIG_CMD_RARP) |
efee1709 WD |
8 | |
9 | #ifndef __RARP_H__ | |
10 | #define __RARP_H__ | |
11 | ||
efee1709 | 12 | #include <net.h> |
efee1709 WD |
13 | |
14 | /**********************************************************************/ | |
15 | /* | |
16 | * Global functions and variables. | |
17 | */ | |
18 | ||
698d78e5 | 19 | extern int rarp_try; |
efee1709 | 20 | |
8b9c5322 | 21 | /* Process the receipt of a RARP packet */ |
698d78e5 JH |
22 | void rarp_receive(struct ip_udp_hdr *ip, unsigned len); |
23 | void rarp_request(void); /* Send a RARP request */ | |
efee1709 WD |
24 | |
25 | /**********************************************************************/ | |
26 | ||
27 | #endif /* __RARP_H__ */ | |
8b9c5322 | 28 | #endif |