diff options
author | Michael Brown <mcb30@etherboot.org> | 2006-08-27 01:37:58 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2006-08-27 01:37:58 +0000 |
commit | cab3f4502b42031b08912092e92058c639ee27bb (patch) | |
tree | 1034a6fb844fc67831f6bc3b66e39f7fff347113 | |
parent | 5a54225aef1773c752fbea51fb6b0cc677c92265 (diff) | |
download | ipxe-cab3f4502b42031b08912092e92058c639ee27bb.tar.gz |
Correct option number for DHCP_DNS_SERVERS, and add it to the request
list.
-rw-r--r-- | src/include/gpxe/dhcp.h | 2 | ||||
-rw-r--r-- | src/net/udp/dhcp.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/include/gpxe/dhcp.h b/src/include/gpxe/dhcp.h index 10e42319..79df5fc7 100644 --- a/src/include/gpxe/dhcp.h +++ b/src/include/gpxe/dhcp.h @@ -57,7 +57,7 @@ #define DHCP_ROUTERS 3 /** DNS servers */ -#define DHCP_DNS_SERVERS 4 +#define DHCP_DNS_SERVERS 6 /** Host name */ #define DHCP_HOST_NAME 12 diff --git a/src/net/udp/dhcp.c b/src/net/udp/dhcp.c index cd8a159e..af32f213 100644 --- a/src/net/udp/dhcp.c +++ b/src/net/udp/dhcp.c @@ -55,7 +55,7 @@ static uint8_t dhcp_request_options_data[] = { DHCP_STRING ( 'E', 't', 'h', 'e', 'r', 'b', 'o', 'o', 't' ), DHCP_PARAMETER_REQUEST_LIST, DHCP_OPTION ( DHCP_SUBNET_MASK, DHCP_ROUTERS, DHCP_HOST_NAME, - DHCP_BOOTFILE_NAME, DHCP_EB_ENCAP ), + DHCP_BOOTFILE_NAME, DHCP_DNS_SERVERS, DHCP_EB_ENCAP ), DHCP_END }; |