Save NIC data when we are doing editing. In particular, if we put a VPN password in and then clicked the endpoint, the password was reset. Save the password.
This commit is contained in:
parent
26b33b46be
commit
29e6d64614
@ -172,6 +172,12 @@ namespace EduNetworkBuilder
|
|||||||
{
|
{
|
||||||
MyNicToEdit.CanUseDHCP = cbCanUseDHCP.Checked;
|
MyNicToEdit.CanUseDHCP = cbCanUseDHCP.Checked;
|
||||||
MyNicToEdit.UsesDHCP = cbDHCP.Checked;
|
MyNicToEdit.UsesDHCP = cbDHCP.Checked;
|
||||||
|
SaveDataToNic();
|
||||||
|
Close();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void SaveDataToNic()
|
||||||
|
{
|
||||||
if (tbVPNEncrypt != null)
|
if (tbVPNEncrypt != null)
|
||||||
{
|
{
|
||||||
MyNicToEdit.EncryptionKey = tbVPNEncrypt.Text;
|
MyNicToEdit.EncryptionKey = tbVPNEncrypt.Text;
|
||||||
@ -180,7 +186,6 @@ namespace EduNetworkBuilder
|
|||||||
{
|
{
|
||||||
MyNicToEdit.SSID = tbSSID.Text;
|
MyNicToEdit.SSID = tbSSID.Text;
|
||||||
}
|
}
|
||||||
Close();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void btnVPNEnd_Click(object sender, EventArgs e)
|
private void btnVPNEnd_Click(object sender, EventArgs e)
|
||||||
@ -192,6 +197,7 @@ namespace EduNetworkBuilder
|
|||||||
MyNicToEdit.TunnelEndpoint = new IPAddress(NB.ZeroIPString, "255.255.255.0", IPAddressType.ip_only);
|
MyNicToEdit.TunnelEndpoint = new IPAddress(NB.ZeroIPString, "255.255.255.0", IPAddressType.ip_only);
|
||||||
}
|
}
|
||||||
MyNicToEdit.TunnelEndpoint.Edit(nd, this, NB.Translate("_Endpt"));
|
MyNicToEdit.TunnelEndpoint.Edit(nd, this, NB.Translate("_Endpt"));
|
||||||
|
SaveDataToNic();
|
||||||
UpdateForm();
|
UpdateForm();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user