PSO2SERVER/Server/Protocol/Handlers/11-ClientHandler/11-14-BlockLogin.cs

17 lines
480 B
C#
Raw Normal View History

2024-12-03 13:18:58 +08:00
using System;
using PSO2SERVER.Models;
using PSO2SERVER.Protocol.Packets;
namespace PSO2SERVER.Protocol.Handlers
{
[PacketHandlerAttr(0x11, 0x14)]
public class BlockLogin : PacketHandler
{
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
2024-12-03 18:17:43 +08:00
var info = string.Format("[<--] 接收到的数据 (hex): {0} 字节", data.Length);
Logger.WriteHex(info, data);
2024-12-03 13:18:58 +08:00
}
}
}