PSO2SERVER/Server/Protocol/Handlers/11-ClientHandler/11-2B-LogOutRequest.cs
2024-11-27 18:05:53 +08:00

25 lines
578 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PSO2SERVER.Protocol.Handlers
{
[PacketHandlerAttr(0x11, 0x2B)]
public class LogOutRequest : PacketHandler
{
// 只是返回一个断开指示,没有任何数据包结构
#region implemented abstract members of PacketHandler
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
context.Socket.Close();
}
#endregion
}
}