mirror of
https://github.com/ipxe/ipxe
synced 2025-12-29 11:03:15 +03:00
19 lines
264 B
C
19 lines
264 B
C
|
|
#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 );
|
||
|
|
extern void init_tcpip ( void );
|
||
|
|
extern void run_tcpip ( void );
|
||
|
|
|
||
|
|
#endif /* _IP_H */
|