david/ipxe
david
/
ipxe
Archived
1
0
Fork 0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/gpxe/ip.h

21 lines
368 B
C
Raw Normal View History

#ifndef _IP_H
#define _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 13:41:15 +02: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 /* _IP_H */