diff --git a/EduNetworkBuilder/IPAddress.cs b/EduNetworkBuilder/IPAddress.cs index 047f770..0d03b8c 100644 --- a/EduNetworkBuilder/IPAddress.cs +++ b/EduNetworkBuilder/IPAddress.cs @@ -7,6 +7,7 @@ using System.Globalization; using System.Xml; using System.Windows.Forms; using System.Text.RegularExpressions; +using System.Net; namespace EduNetworkBuilder { @@ -18,6 +19,10 @@ namespace EduNetworkBuilder private UInt32 _mask; private UInt32 _gw; private IPAddressType myType; + //Add in new values for the IP, Netmask, and gateway. Will start migrating to use these. + private IPAddress theIP; + private IPAddress theNetmask; + private IPAddress theGateway; public NB_IPAddress(string ip, string mask, IPAddressType WhatType) {