HaoYueTunnel/ClientCore/Enum/CommEnum.cs

25 lines
379 B
C#
Raw Normal View History

2023-06-15 15:45:58 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ClientCore.Enum
{
public enum ServerType
{
MainServer,
TcpTunnelServer,
TcpP2PTarget
}
2024-04-26 17:51:55 +08:00
public enum E_P2P_STATE
{
None = 0,
Doing,//
Fail,//
Success,//进行成功
}
2023-06-15 15:45:58 +08:00
}