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
428 B
C
Raw Normal View History

#ifndef _GPXE_IP_H
#define _GPXE_IP_H
/** @file
*
* IP protocol
*
*/
struct net_protocol;
extern struct net_protocol ipv4_protocol;
2006-06-16 02:19:46 +02:00
extern int add_ipv4_address ( struct net_device *netdev,
struct in_addr address, struct in_addr netmask,
struct in_addr gateway );
extern void del_ipv4_address ( struct net_device *netdev );
extern int ipv4_uip_transmit ( struct pk_buff *pkb );
#endif /* _GPXE_IP_H */