diff options
| author | Michael Brown | 2009-01-23 02:47:33 +0100 |
|---|---|---|
| committer | Michael Brown | 2009-01-23 02:47:33 +0100 |
| commit | 3f814f08e50e6ffbe7d87c20dcc68bbc327cdaa4 (patch) | |
| tree | 41e774740e698aa17f7ee0b82344b5f9916a6b35 /src/include/gpxe | |
| parent | [dhcp] Handle missing ProxyDHCP servers (diff) | |
| download | ipxe-3f814f08e50e6ffbe7d87c20dcc68bbc327cdaa4.tar.gz ipxe-3f814f08e50e6ffbe7d87c20dcc68bbc327cdaa4.tar.xz ipxe-3f814f08e50e6ffbe7d87c20dcc68bbc327cdaa4.zip | |
[dhcp] Clarify language surrounding ProxyDHCP
Remove the lazy assumption that ProxyDHCP == "DHCP with option 60 set
to PXEClient", and explicitly separate the notion of ProxyDHCP from
the notion of packets containing PXE options.
Diffstat (limited to 'src/include/gpxe')
| -rw-r--r-- | src/include/gpxe/dhcp.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/gpxe/dhcp.h b/src/include/gpxe/dhcp.h index c45004cfc..66aa50ac3 100644 --- a/src/include/gpxe/dhcp.h +++ b/src/include/gpxe/dhcp.h @@ -25,8 +25,8 @@ struct dhcp_pxe_boot_menu_item; /** BOOTP/DHCP client port */ #define BOOTPC_PORT 68 -/** ProxyDHCP server port */ -#define PROXYDHCP_PORT 4011 +/** PXE server port */ +#define PXE_PORT 4011 /** Construct a tag value for an encapsulated option * @@ -207,12 +207,12 @@ struct dhcp_pxe_boot_menu_item; * */ -/** Ignore ProxyDHCP +/** Skip PXE DHCP protocol extensions such as ProxyDHCP * * If set to a non-zero value, gPXE will not wait for ProxyDHCP offers - * and will ignore any ProxyDHCP offers that it receives. + * and will ignore any PXE-specific DHCP offers that it receives. */ -#define DHCP_EB_NO_PROXYDHCP DHCP_ENCAP_OPT ( DHCP_EB_ENCAP, 0xb0 ) +#define DHCP_EB_NO_PXEDHCP DHCP_ENCAP_OPT ( DHCP_EB_ENCAP, 0xb0 ) /** Network device descriptor * |
