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