2015-10-20 04:17:18 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows;
|
|
|
|
|
using System.Windows.Controls;
|
|
|
|
|
using System.Windows.Data;
|
|
|
|
|
using System.Windows.Documents;
|
|
|
|
|
using System.Windows.Input;
|
|
|
|
|
using System.Windows.Media;
|
|
|
|
|
using System.Windows.Media.Imaging;
|
|
|
|
|
using System.Windows.Navigation;
|
|
|
|
|
using System.Windows.Shapes;
|
|
|
|
|
|
|
|
|
|
namespace WinUI
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interaction logic for NetworkInfoView.xaml
|
|
|
|
|
/// </summary>
|
2015-10-22 03:29:03 +00:00
|
|
|
|
public partial class NetworkInfoView : UserControl
|
2015-10-20 04:17:18 +00:00
|
|
|
|
{
|
2015-10-22 03:29:03 +00:00
|
|
|
|
ZeroTierNetwork network;
|
|
|
|
|
|
|
|
|
|
public NetworkInfoView(ZeroTierNetwork network)
|
2015-10-20 04:17:18 +00:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2015-10-22 03:29:03 +00:00
|
|
|
|
this.network = network;
|
|
|
|
|
|
2015-10-23 22:36:42 +00:00
|
|
|
|
UpdateNetworkData();
|
2015-10-22 03:29:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-23 22:36:42 +00:00
|
|
|
|
private void UpdateNetworkData()
|
2015-10-22 03:29:03 +00:00
|
|
|
|
{
|
2015-10-23 22:36:42 +00:00
|
|
|
|
this.networkId.Text = network.NetworkId;
|
|
|
|
|
this.networkName.Text = network.NetworkName;
|
|
|
|
|
this.networkStatus.Text = network.NetworkStatus;
|
|
|
|
|
this.networkType.Text = network.NetworkType;
|
|
|
|
|
this.macAddress.Text = network.MacAddress;
|
|
|
|
|
this.mtu.Text = network.MTU.ToString();
|
|
|
|
|
this.broadcastEnabled.Text = (network.BroadcastEnabled ? "ENABLED" : "DISABLED");
|
|
|
|
|
this.bridgingEnabled.Text = (network.Bridge ? "ENABLED" : "DISABLED");
|
|
|
|
|
this.deviceName.Text = network.DeviceName;
|
2015-10-22 03:29:03 +00:00
|
|
|
|
|
|
|
|
|
string iplist = "";
|
2015-10-23 22:36:42 +00:00
|
|
|
|
for (int i = 0; i < network.AssignedAddresses.Length; ++i)
|
2015-10-22 03:29:03 +00:00
|
|
|
|
{
|
2015-10-23 22:36:42 +00:00
|
|
|
|
iplist += network.AssignedAddresses[i];
|
|
|
|
|
if (i < (network.AssignedAddresses.Length - 1))
|
2015-10-22 03:29:03 +00:00
|
|
|
|
iplist += "\n";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.managedIps.Text = iplist;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-23 22:36:42 +00:00
|
|
|
|
public bool HasNetwork(ZeroTierNetwork network)
|
2015-10-22 03:29:03 +00:00
|
|
|
|
{
|
2015-10-23 22:36:42 +00:00
|
|
|
|
if (this.network.NetworkId.Equals(network.NetworkId))
|
2015-10-22 03:29:03 +00:00
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
2015-10-20 04:17:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|