diff --git a/App.config b/App.config
index 8c62091..4944e46 100644
--- a/App.config
+++ b/App.config
@@ -7,6 +7,9 @@
+
+
+
diff --git a/IPMonitor.csproj b/IPMonitor.csproj
index fd955d1..9d498fb 100644
--- a/IPMonitor.csproj
+++ b/IPMonitor.csproj
@@ -37,6 +37,8 @@
+
+
@@ -44,13 +46,17 @@
+
+
+
+
diff --git a/IPMonitor.v12.suo b/IPMonitor.v12.suo
index 5c42ff7..2c88057 100644
Binary files a/IPMonitor.v12.suo and b/IPMonitor.v12.suo differ
diff --git a/Program.cs b/Program.cs
index a4d20ab..2cdfde1 100644
--- a/Program.cs
+++ b/Program.cs
@@ -5,42 +5,51 @@ using System.Text;
using System.Threading.Tasks;
using System.Configuration;
using System.Net;
+using System.Net.Http;
using System.IO;
using System.Diagnostics;
using System.Threading;
+using System.Web;
namespace IPMonitor
{
class Program
{
- //public static String GetPublicIPAddress()
- //{
- // try
- // {
- // String address = "";
- // WebRequest request = WebRequest.Create("http://checkip.dyndns.org/");
- // using (WebResponse response = request.GetResponse())
- // using (StreamReader stream = new StreamReader(response.GetResponseStream()))
- // {
- // address = stream.ReadToEnd();
- // }
-
- // int first = address.IndexOf("Address: ") + 9;
- // int last = address.LastIndexOf("