diff --git a/dhcp_tools/detail_wnd.c b/dhcp_tools/detail_wnd.c index 86be16b..b300144 100644 --- a/dhcp_tools/detail_wnd.c +++ b/dhcp_tools/detail_wnd.c @@ -285,7 +285,7 @@ static void create_dhcp_tree_mode(PDHCP_PACKAGE p, U32 nBytes, GtkWidget *treeVi ADD_SUB_STRING("Relay agent IP address", inet_ntoa(*(struct in_addr *)&p->dhcp.giaddr)); s = sdsempty(); MAC_TO_STR(p->dhcp.chaddr, s); - ADD_SUB_STRING("Destination", s); + ADD_SUB_STRING("Client MAC address", s); sdsfree(s); if (strlen((char *)p->dhcp.sname) != 0) { diff --git a/srcs/service/dhcpd/dhcp_option.c b/srcs/service/dhcpd/dhcp_option.c index 4d8c3dd..769a2cc 100644 --- a/srcs/service/dhcpd/dhcp_option.c +++ b/srcs/service/dhcpd/dhcp_option.c @@ -105,6 +105,7 @@ static const DHCP_OPTION_CFG g_opCfg[] = { {"SubnetSelectionOption", OPT_SUBNETSELECTION, 3, TRUE }, {"DomainSearch", OPT_DOMAINSEARCH, 1, TRUE }, {"SIPServersDHCPOption", OPT_SIPSERVERSDHCP, 1, TRUE }, + {"ClasslessStaticRoute", OPT_CLASSLESSSTATICROUTE, 1, TRUE }, {"CCC", OPT_CCC, 1, TRUE }, {"TFTPServerIPaddress", OPT_TFPTSERVERIPADDRESS, 3, TRUE }, {"CallServerIPaddress", OPT_CALLSERVERIPADDRESS, 3, TRUE },