1
0
mirror of https://github.com/Ylianst/MeshCentralRouter synced 2025-12-06 00:13:33 +00:00

Many improvements.

This commit is contained in:
Ylian Saint-Hilaire
2020-09-16 14:42:23 -07:00
parent 94a7784af3
commit 2a8d1d3a6c
24 changed files with 549 additions and 189 deletions

View File

@@ -14,7 +14,7 @@ namespace MeshCentralRouter
{
public partial class MapUserControl : UserControl
{
public string ruleName;
public string name;
public int protocol;
public int localPort;
public string remoteIP = null;
@@ -46,9 +46,9 @@ namespace MeshCentralRouter
public void UpdateInfo()
{
if(this.ruleName != null)
if ((name != null) && (name != ""))
{
deviceNameLabel.Text = node.name + ": " + this.ruleName;
deviceNameLabel.Text = node.name + ": " + this.name;
}
else
{