HaoYueTunnel/ClientCore/Event/EEvent.cs
2024-04-26 17:51:55 +08:00

38 lines
702 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ClientCore.Event
{
public enum EEvent
{
// 添加你自己需要的事件类型
UserLogin,
UserJoin,
UserLeave,
OnChatMsg,
OnP2PChatMsg,
//打洞流程
TcpTunnelHelloResp,
TcpTunnelP2PStateUpdate,//打洞状态
//连接管理
OnSocketConnect,
OnSocketDisconnect,
//文件传输
/// <summary>
/// 同意传输
/// </summary>
OnFileConfirmChoice,
OnFilePushStart,
OnFilePushPr,
OnFilePushEnd,
}
}