From ee7da073132b78b3091805256ca62c960597a160 Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 31 Oct 2020 14:13:04 +0530 Subject: [PATCH] DhcpOption: added parsing entry for VendorSpecificInformation and VendorClassIdentifier. --- DnsServerCore/Dhcp/DhcpOption.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/DnsServerCore/Dhcp/DhcpOption.cs b/DnsServerCore/Dhcp/DhcpOption.cs index 4cf0d577..c51a4be0 100644 --- a/DnsServerCore/Dhcp/DhcpOption.cs +++ b/DnsServerCore/Dhcp/DhcpOption.cs @@ -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);