2024-06-25 18:23:08 +08:00
|
|
|
|
using NoSugarNet.Adapter.DataHelper;
|
|
|
|
|
|
|
|
|
|
namespace NoSugarNet.ClientCore.Common
|
|
|
|
|
{
|
|
|
|
|
public struct TunnelClientData
|
|
|
|
|
{
|
|
|
|
|
public byte TunnelId;
|
2024-06-25 18:29:17 +08:00
|
|
|
|
public string LocalTargetIP;
|
|
|
|
|
public ushort LocalTargetPort;
|
|
|
|
|
public ushort RemoteLocalPort;
|
2024-06-25 18:23:08 +08:00
|
|
|
|
}
|
|
|
|
|
public static class Config
|
|
|
|
|
{
|
|
|
|
|
public static Dictionary<byte, TunnelClientData> cfgs = new Dictionary<byte, TunnelClientData>();
|
|
|
|
|
public static E_CompressAdapter compressAdapterType;
|
|
|
|
|
}
|
|
|
|
|
}
|