DhcpOption: added parsing entry for VendorSpecificInformation and VendorClassIdentifier.

This commit is contained in:
Shreyas Zare
2020-10-31 14:13:04 +05:30
parent 04134d80ad
commit ee7da07313

View File

@@ -170,6 +170,9 @@ namespace DnsServerCore.Dhcp
case DhcpOptionCode.BroadcastAddress:
return new BroadcastAddressOption(s);
case DhcpOptionCode.VendorSpecificInformation:
return new VendorSpecificInformationOption(s);
case DhcpOptionCode.NetBiosOverTcpIpNameServer:
return new NetBiosNameServerOption(s);
@@ -200,6 +203,9 @@ namespace DnsServerCore.Dhcp
case DhcpOptionCode.RebindingTimeValue:
return new RebindingTimeValueOption(s);
case DhcpOptionCode.VendorClassIdentifier:
return new VendorClassIdentifierOption(s);
case DhcpOptionCode.ClientIdentifier:
return new ClientIdentifierOption(s);