diff --git a/Lib/HaoYueNet.ServerNetwork.dll b/Lib/HaoYueNet.ServerNetwork.dll index fe89567..6e7dce7 100644 Binary files a/Lib/HaoYueNet.ServerNetwork.dll and b/Lib/HaoYueNet.ServerNetwork.dll differ diff --git a/NoSugarNet.ClientCore/NetStatus.cs b/NoSugarNet.ClientCore/NetStatus.cs new file mode 100644 index 0000000..b764cd9 --- /dev/null +++ b/NoSugarNet.ClientCore/NetStatus.cs @@ -0,0 +1,16 @@ +namespace NoSugarNet.ClientCore +{ + public struct NetStatus + { + public int ClientUserCount; + public int TunnelCount; + public long srcReciveAllLenght; + public long srcSendAllLenght; + public long srcReciveSecSpeed; + public long srcSendSecSpeed; + public long tReciveAllLenght; + public long tSendAllLenght; + public long tReciveSecSpeed; + public long tSendSecSpeed; + } +}