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

49 lines
1.1 KiB
C
Raw Normal View History

#ifndef _GPXE_IP_H
#define _GPXE_IP_H
/** @file
*
* IP protocol
*
*/
#include <ip.h>
/* IP constants */
#define IP_HLEN 20
#define IP_VER 4
#define IP_MASK_VER 0xf0
#define IP_MASK_HLEN 0x0f
#define IP_PSHLEN 12
/* IP header defaults */
#define IP_TOS 0
#define IP_TTL 64
/* IP6 constants */
#define IP6_HLEN 38
struct pk_buff;
struct net_device;
struct net_protocol;
extern struct net_protocol ipv4_protocol;
extern struct net_protocol ipv6_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_tx ( struct pk_buff *pkb );
2006-06-16 02:19:46 +02:00
extern int ipv4_tx ( struct pk_buff *pkb, uint16_t trans_proto, struct in_addr *dest );
extern int ipv6_tx ( struct pk_buff *pkb, uint16_t trans_proto, struct in6_addr *dest );
extern void ipv4_rx ( struct pk_buff *pkb, struct net_device *netdev, const void *ll_source );
extern void ipv6_rx ( struct pk_buff *pkb, struct net_device *netdev, const void *ll_source );
#endif /* _GPXE_IP_H */