diff options
| author | Michael Brown | 2011-12-06 14:54:45 +0100 |
|---|---|---|
| committer | Michael Brown | 2011-12-06 14:54:45 +0100 |
| commit | 8926c233f69cf0f8757ce3fad4232b2396ca7834 (patch) | |
| tree | 487fac459c23a8a9b3003ed4744856d69750c68a | |
| parent | [e1000] Request notification of TX completions (diff) | |
| download | ipxe-8926c233f69cf0f8757ce3fad4232b2396ca7834.tar.gz ipxe-8926c233f69cf0f8757ce3fad4232b2396ca7834.tar.xz ipxe-8926c233f69cf0f8757ce3fad4232b2396ca7834.zip | |
[dhcp] Add PXE-mandated DHCP options [128,135] to parameter request list
The PXE specification requires us to request DHCP options 128 to 135
inclusive, although these have no defined purpose.
Suggested-by: Ralf Buettner <rab@bootix.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
| -rw-r--r-- | src/net/udp/dhcp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/net/udp/dhcp.c b/src/net/udp/dhcp.c index 682191f06..10482e94d 100644 --- a/src/net/udp/dhcp.c +++ b/src/net/udp/dhcp.c @@ -85,6 +85,7 @@ static uint8_t dhcp_request_options_data[] = { DHCP_LOG_SERVERS, DHCP_HOST_NAME, DHCP_DOMAIN_NAME, DHCP_ROOT_PATH, DHCP_VENDOR_ENCAP, DHCP_VENDOR_CLASS_ID, DHCP_TFTP_SERVER_NAME, DHCP_BOOTFILE_NAME, + 128, 129, 130, 131, 132, 133, 134, 135, /* for PXE */ DHCP_EB_ENCAP, DHCP_ISCSI_INITIATOR_IQN ), DHCP_END }; |
