From bd3a370bce84df537d8a6b344c1193f21e8ddfc0 Mon Sep 17 00:00:00 2001 From: Martin Hochstrasser Date: Tue, 3 Apr 2018 16:40:14 +0200 Subject: [PATCH] Releasing first version 0.0.1.0 --- Properties/AssemblyInfo.cs | 8 ++++---- README.md | 4 ++++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index c455eeb..0e7665e 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -6,11 +6,11 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("DhcpClientNET")] -[assembly: AssemblyDescription("")] +[assembly: AssemblyDescription("A simple console-based DHCP client")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("DhcpClientNET")] -[assembly: AssemblyCopyright("Copyright © 2018")] +[assembly: AssemblyCopyright("Copyright © Martin Hochstrasser 2018")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("0.0.1.0")] +[assembly: AssemblyFileVersion("0.0.1.0")] diff --git a/README.md b/README.md index 49d8ed3..1a2171c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ # DhcpClient A (simple) console-based DHCP client + +It allows one to chosse the right DHCP server if rogue DHCP server are on the same network. + +Needs administrator privilege because it needs a RAW socket to build the correct DHCP packets.