2 * Copied from LiMon - BOOTP.
4 * Copyright 1994, 1995, 2000 Neil Russell.
6 * Copyright 2000 Paolo Scaffardi
14 #endif /* __NET_H__ */
16 /**********************************************************************/
21 #if defined(CONFIG_CMD_DHCP)
22 /* Minimum DHCP Options size per RFC2131 - results in 576 byte pkt */
23 #define OPT_FIELD_SIZE 312
24 #if defined(CONFIG_BOOTP_VENDOREX)
25 extern u8 *dhcp_vendorex_prep(u8 *e); /*rtn new e after add own opts. */
26 extern u8 *dhcp_vendorex_proc(u8 *e); /*rtn next e if mine,else NULL */
29 #define OPT_FIELD_SIZE 64
33 u8 bp_op; /* Operation */
34 # define OP_BOOTREQUEST 1
35 # define OP_BOOTREPLY 2
36 u8 bp_htype; /* Hardware type */
38 u8 bp_hlen; /* Hardware address length */
40 u8 bp_hops; /* Hop count (gateway thing) */
41 u32 bp_id; /* Transaction ID */
42 u16 bp_secs; /* Seconds since boot */
43 u16 bp_spare1; /* Alignment */
44 struct in_addr bp_ciaddr; /* Client IP address */
45 struct in_addr bp_yiaddr; /* Your (client) IP address */
46 struct in_addr bp_siaddr; /* Server IP address */
47 struct in_addr bp_giaddr; /* Gateway IP address */
48 u8 bp_chaddr[16]; /* Client hardware address */
49 char bp_sname[64]; /* Server host name */
50 char bp_file[128]; /* Boot file name */
51 char bp_vend[OPT_FIELD_SIZE]; /* Vendor information */
54 #define BOOTP_HDR_SIZE sizeof(struct bootp_hdr)
56 /**********************************************************************/
58 * Global functions and variables.
62 extern u32 bootp_id; /* ID of cur BOOTP request */
66 /* Send a BOOTP request */
67 void bootp_reset(void);
68 void bootp_request(void);
70 /****************** DHCP Support *********************/
71 void dhcp_request(void);
81 RENEWING } dhcp_state_t;
83 #define DHCP_DISCOVER 1
85 #define DHCP_REQUEST 3
86 #define DHCP_DECLINE 4
89 #define DHCP_RELEASE 7
91 /**********************************************************************/
93 #endif /* __BOOTP_H__ */