Give NIC an ssid and WirelessKey

This commit is contained in:
Tim Young 2015-08-19 13:42:04 -06:00
parent fb4269ef3b
commit 100dd50cb4
1 changed files with 6 additions and 0 deletions

View File

@ -26,6 +26,12 @@ namespace EduNetworkBuilder
private string _nic_name="";
public IPAddress TunnelEndpoint;
public string EncryptionKey;
public string SSID;
public string WirelessKey
{
get { return EncryptionKey; }
set { EncryptionKey = value; }
}
public NetworkCard(int index, int HostID, string hostname, NicType theType = NicType.eth)
{