25 lines
379 B
C#
25 lines
379 B
C#
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
|
|
}
|
|
|
|
public enum E_P2P_STATE
|
|
{
|
|
None = 0,
|
|
Doing,//
|
|
Fail,//
|
|
Success,//进行成功
|
|
}
|
|
}
|