mirror of
https://github.com/fergalmoran/DnsServer.git
synced 2026-01-04 15:55:32 +00:00
DhcpOption: added parsing entry for VendorSpecificInformation and VendorClassIdentifier.
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user