mirror of https://github.com/ipxe/ipxe.git
Packets without a DHCP_MESSAGE_TYPE option are probably just BOOTP
packets.pull/1/head
parent
29b358dd39
commit
881b90e82c
|
@ -66,6 +66,7 @@ static uint8_t dhcp_request_options_data[] = {
|
||||||
*/
|
*/
|
||||||
static inline const char * dhcp_message_type_name ( unsigned int msgtype ) {
|
static inline const char * dhcp_message_type_name ( unsigned int msgtype ) {
|
||||||
switch ( msgtype ) {
|
switch ( msgtype ) {
|
||||||
|
case 0: return "BOOTP"; /* Non-DHCP packet */
|
||||||
case DHCPDISCOVER: return "DHCPDISCOVER";
|
case DHCPDISCOVER: return "DHCPDISCOVER";
|
||||||
case DHCPOFFER: return "DHCPOFFER";
|
case DHCPOFFER: return "DHCPOFFER";
|
||||||
case DHCPREQUEST: return "DHCPREQUEST";
|
case DHCPREQUEST: return "DHCPREQUEST";
|
||||||
|
|
Loading…
Reference in New Issue