summaryrefslogtreecommitdiff
path: root/usr/src/grub/grub-0.97/netboot/in.h
blob: e6d29f4db8e200f2e9b6f584887b627156fa07cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef	_IN_H
#define	_IN_H

#include "types.h"

#define IP		0x0800
#define ARP		0x0806
#define	RARP		0x8035

#define IP_ICMP		1
#define IP_IGMP		2
#define IP_UDP		17

/* Same after going through htonl */
#define IP_BROADCAST	0xFFFFFFFF

typedef struct {
	uint32_t	s_addr;
} in_addr;

#endif	/* _IN_H */