Files
ipxe/src/include/gpxe/ip.h

21 lines
383 B
C
Raw Normal View History

#ifndef _GPXE_IP_H
#define _GPXE_IP_H
/** @file
*
* IP protocol
*
* This file defines the gPXE IP API.
*
*/
#include <gpxe/in.h>
extern void set_ipaddr ( struct in_addr address );
2006-04-05 11:41:15 +00:00
extern void set_netmask ( struct in_addr address );
extern void set_gateway ( struct in_addr address );
extern void init_tcpip ( void );
extern void run_tcpip ( void );
#endif /* _GPXE_IP_H */