Skip to content
Snippets Groups Projects
rarp.h 608 B
Newer Older
  • Learn to ignore specific revisions
  • Wolfgang Denk's avatar
    Wolfgang Denk committed
    /*
     * (C) Copyright 2000
     * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
     *
    
     * SPDX-License-Identifier:	GPL-2.0+
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
     */
    
    
    #if defined(CONFIG_CMD_RARP)
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    #ifndef __RARP_H__
    #define __RARP_H__
    
    #include <net.h>
    
    /**********************************************************************/
    /*
     *	Global functions and variables.
     */
    
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    /* Process the receipt of a RARP packet */
    
    void rarp_receive(struct ip_udp_hdr *ip, unsigned len);
    void rarp_request(void);	/* Send a RARP request */
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    /**********************************************************************/
    
    #endif /* __RARP_H__ */