更换网络库版本

This commit is contained in:
sin365 2024-04-07 17:01:47 +08:00
parent 32aaa8e931
commit 801e5afb22
2 changed files with 16 additions and 0 deletions

Binary file not shown.

View File

@ -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;
}
}