├── .gitignore ├── App.config ├── DhcpHost.Designer.cs ├── DhcpHost.cs ├── DhcpHost.resx ├── LICENSE ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── WinDHCP.csproj ├── WinDHCP.sln ├── WinDHCPLib ├── AddressLease.cs ├── Configuration │ ├── DhcpServerConfigurationSection.cs │ ├── InternetAddressElement.cs │ ├── InternetAddressElementCollection.cs │ ├── PhysicalAddressElement.cs │ ├── PhysicalAddressElementCollection.cs │ ├── PhysicalAddressMappingElement.cs │ └── PhysicalAddressMappingElementCollection.cs ├── DhcpMessage.cs ├── DhcpServer.cs ├── InternetAddress.cs ├── PhysicalAddress.cs ├── Properties │ └── AssemblyInfo.cs └── WinDHCPLib.csproj └── WinDHCPTestClient ├── Program.cs ├── Properties └── AssemblyInfo.cs └── WinDHCPTestClient.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/App.config -------------------------------------------------------------------------------- /DhcpHost.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/DhcpHost.Designer.cs -------------------------------------------------------------------------------- /DhcpHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/DhcpHost.cs -------------------------------------------------------------------------------- /DhcpHost.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/DhcpHost.resx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/LICENSE -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/README.md -------------------------------------------------------------------------------- /WinDHCP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCP.csproj -------------------------------------------------------------------------------- /WinDHCP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCP.sln -------------------------------------------------------------------------------- /WinDHCPLib/AddressLease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCPLib/AddressLease.cs -------------------------------------------------------------------------------- /WinDHCPLib/Configuration/DhcpServerConfigurationSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCPLib/Configuration/DhcpServerConfigurationSection.cs -------------------------------------------------------------------------------- /WinDHCPLib/Configuration/InternetAddressElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCPLib/Configuration/InternetAddressElement.cs -------------------------------------------------------------------------------- /WinDHCPLib/Configuration/InternetAddressElementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCPLib/Configuration/InternetAddressElementCollection.cs -------------------------------------------------------------------------------- /WinDHCPLib/Configuration/PhysicalAddressElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCPLib/Configuration/PhysicalAddressElement.cs -------------------------------------------------------------------------------- /WinDHCPLib/Configuration/PhysicalAddressElementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCPLib/Configuration/PhysicalAddressElementCollection.cs -------------------------------------------------------------------------------- /WinDHCPLib/Configuration/PhysicalAddressMappingElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCPLib/Configuration/PhysicalAddressMappingElement.cs -------------------------------------------------------------------------------- /WinDHCPLib/Configuration/PhysicalAddressMappingElementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCPLib/Configuration/PhysicalAddressMappingElementCollection.cs -------------------------------------------------------------------------------- /WinDHCPLib/DhcpMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCPLib/DhcpMessage.cs -------------------------------------------------------------------------------- /WinDHCPLib/DhcpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCPLib/DhcpServer.cs -------------------------------------------------------------------------------- /WinDHCPLib/InternetAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCPLib/InternetAddress.cs -------------------------------------------------------------------------------- /WinDHCPLib/PhysicalAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCPLib/PhysicalAddress.cs -------------------------------------------------------------------------------- /WinDHCPLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCPLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinDHCPLib/WinDHCPLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCPLib/WinDHCPLib.csproj -------------------------------------------------------------------------------- /WinDHCPTestClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCPTestClient/Program.cs -------------------------------------------------------------------------------- /WinDHCPTestClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCPTestClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinDHCPTestClient/WinDHCPTestClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sflanker/WinDHCP/HEAD/WinDHCPTestClient/WinDHCPTestClient.csproj --------------------------------------------------------------------------------