6b13f685e
김민수
BSP 최초 추가
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
#ifndef __BOOTP_H__
#define __BOOTP_H__
#ifndef __NET_H__
#include <net.h>
#endif /* __NET_H__ */
#if defined(CONFIG_CMD_DHCP)
#define OPT_FIELD_SIZE 312
#if defined(CONFIG_BOOTP_VENDOREX)
extern u8 *dhcp_vendorex_prep(u8 *e);
extern u8 *dhcp_vendorex_proc(u8 *e);
#endif
#else
#define OPT_FIELD_SIZE 64
#endif
struct Bootp_t {
uchar bp_op;
# define OP_BOOTREQUEST 1
# define OP_BOOTREPLY 2
uchar bp_htype;
# define HWT_ETHER 1
uchar bp_hlen;
# define HWL_ETHER 6
uchar bp_hops;
ulong bp_id;
ushort bp_secs;
ushort bp_spare1;
IPaddr_t bp_ciaddr;
IPaddr_t bp_yiaddr;
IPaddr_t bp_siaddr;
IPaddr_t bp_giaddr;
uchar bp_chaddr[16];
char bp_sname[64];
char bp_file[128];
char bp_vend[OPT_FIELD_SIZE];
};
#define BOOTP_HDR_SIZE sizeof(struct Bootp_t)
extern ulong BootpID;
extern char BootFile[128];
extern int BootpTry;
extern void BootpReset(void);
extern void BootpRequest(void);
extern void DhcpRequest(void);
typedef enum { INIT,
INIT_REBOOT,
REBOOTING,
SELECTING,
REQUESTING,
REBINDING,
BOUND,
RENEWING } dhcp_state_t;
#define DHCP_DISCOVER 1
#define DHCP_OFFER 2
#define DHCP_REQUEST 3
#define DHCP_DECLINE 4
#define DHCP_ACK 5
#define DHCP_NAK 6
#define DHCP_RELEASE 7
#endif /* __BOOTP_H__ */
|