Merge branch 'master' of git://github.com/illumos/illumos-gate
[unleashed.git] / usr / src / grub / grub-0.97 / netboot / in.h
blobe6d29f4db8e200f2e9b6f584887b627156fa07cf
1 #ifndef _IN_H
2 #define _IN_H
4 #include "types.h"
6 #define IP 0x0800
7 #define ARP 0x0806
8 #define RARP 0x8035
10 #define IP_ICMP 1
11 #define IP_IGMP 2
12 #define IP_UDP 17
14 /* Same after going through htonl */
15 #define IP_BROADCAST 0xFFFFFFFF
17 typedef struct {
18 uint32_t s_addr;
19 } in_addr;
21 #endif /* _IN_H */