summaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorGrant Limberg <glimberg@gmail.com>2015-10-26 19:01:59 -0700
committerGrant Limberg <glimberg@gmail.com>2015-10-26 19:01:59 -0700
commit502aa68bb7c4f2482c6145328542d61d67a60aa6 (patch)
treeacea7fad00d9477bfeaba4238c49e049707ac8c4 /windows
parent81cb4bc8d60bba7040d1bee24a44ae05566f5f25 (diff)
downloadinfinitytier-502aa68bb7c4f2482c6145328542d61d67a60aa6.tar.gz
infinitytier-502aa68bb7c4f2482c6145328542d61d67a60aa6.zip
change int to UInt64 for these properties
Diffstat (limited to 'windows')
-rw-r--r--windows/WinUI/ZeroTierPeer.cs4
-rw-r--r--windows/WinUI/ZeroTierPeerPhysicalPath.cs4
2 files changed, 4 insertions, 4 deletions
diff --git a/windows/WinUI/ZeroTierPeer.cs b/windows/WinUI/ZeroTierPeer.cs
index ba925a6f..5377f74a 100644
--- a/windows/WinUI/ZeroTierPeer.cs
+++ b/windows/WinUI/ZeroTierPeer.cs
@@ -13,10 +13,10 @@ namespace WinUI
public string Address { get; set; }
[JsonProperty("lastUnicastFrame")]
- public int LastUnicastFrame { get; set; }
+ public UInt64 LastUnicastFrame { get; set; }
[JsonProperty("lastMulticastFrame")]
- public int LastMulticastFrame { get; set; }
+ public UInt64 LastMulticastFrame { get; set; }
[JsonProperty("versionMajor")]
public int VersionMajor { get; set; }
diff --git a/windows/WinUI/ZeroTierPeerPhysicalPath.cs b/windows/WinUI/ZeroTierPeerPhysicalPath.cs
index 51bb3d5b..3eaa8026 100644
--- a/windows/WinUI/ZeroTierPeerPhysicalPath.cs
+++ b/windows/WinUI/ZeroTierPeerPhysicalPath.cs
@@ -13,10 +13,10 @@ namespace WinUI
public string Address { get; set; }
[JsonProperty("lastSend")]
- public int LastSend { get; set; }
+ public UInt64 LastSend { get; set; }
[JsonProperty("lastReceive")]
- public int LastReceive { get; set; }
+ public UInt64 LastReceive { get; set; }
[JsonProperty("fixed")]
public bool Fixed { get; set; }