1*efee1709Swdenk /* 2*efee1709Swdenk * (C) Copyright 2000 3*efee1709Swdenk * Wolfgang Denk, DENX Software Engineering, wd@denx.de. 4*efee1709Swdenk * 5*efee1709Swdenk * See file CREDITS for list of people who contributed to this 6*efee1709Swdenk * project. 7*efee1709Swdenk * 8*efee1709Swdenk * This program is free software; you can redistribute it and/or 9*efee1709Swdenk * modify it under the terms of the GNU General Public License as 10*efee1709Swdenk * published by the Free Software Foundation; either version 2 of 11*efee1709Swdenk * the License, or (at your option) any later version. 12*efee1709Swdenk * 13*efee1709Swdenk * This program is distributed in the hope that it will be useful, 14*efee1709Swdenk * but WITHOUT ANY WARRANTY; without even the implied warranty of 15*efee1709Swdenk * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16*efee1709Swdenk * GNU General Public License for more details. 17*efee1709Swdenk * 18*efee1709Swdenk * You should have received a copy of the GNU General Public License 19*efee1709Swdenk * along with this program; if not, write to the Free Software 20*efee1709Swdenk * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 21*efee1709Swdenk * MA 02111-1307 USA 22*efee1709Swdenk */ 23*efee1709Swdenk 24*efee1709Swdenk 25*efee1709Swdenk #ifndef __RARP_H__ 26*efee1709Swdenk #define __RARP_H__ 27*efee1709Swdenk 28*efee1709Swdenk #ifndef __NET_H__ 29*efee1709Swdenk #include <net.h> 30*efee1709Swdenk #endif /* __NET_H__ */ 31*efee1709Swdenk 32*efee1709Swdenk 33*efee1709Swdenk /**********************************************************************/ 34*efee1709Swdenk /* 35*efee1709Swdenk * Global functions and variables. 36*efee1709Swdenk */ 37*efee1709Swdenk 38*efee1709Swdenk extern int RarpTry; 39*efee1709Swdenk 40*efee1709Swdenk extern void RarpRequest (void); /* Send a RARP request */ 41*efee1709Swdenk 42*efee1709Swdenk /**********************************************************************/ 43*efee1709Swdenk 44*efee1709Swdenk #endif /* __RARP_H__ */ 45