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/in.h

22 lines
333 B
C
Raw Normal View History

2005-03-08 19:53:11 +01:00
#ifndef _IN_H
#define _IN_H
#include <if_ether.h>
#define IP ETH_P_IP
#define ARP ETH_P_ARP
#define RARP ETH_P_RARP
#define IP_ICMP 1
#define IP_IGMP 2
#define IP_TCP 6
#define IP_UDP 17
/* Same after going through htonl */
#define IP_BROADCAST 0xFFFFFFFF
typedef struct {
uint32_t s_addr;
} in_addr;
#endif /* _IN_H */