From 8d1ba61b890788889807c8d2d40d2fdc2def2191 Mon Sep 17 00:00:00 2001 From: Tim Young Date: Thu, 15 Mar 2018 16:03:32 -0500 Subject: [PATCH] Add some of the start of the IP address code that will be used for IPv6 --- EduNetworkBuilder/IPAddress.cs | 5 +++++ 1 file changed, 5 insertions(+) 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) {