PSO2SERVER/Server/Protocol/Handlers/03-ServerHandler/03-0C-ServerPong.cs

20 lines
528 B
C#
Raw Normal View History

2024-09-16 02:56:02 +08:00
using System;
using System.IO;
using PSO2SERVER.Protocol.Packets;
2024-09-16 02:56:02 +08:00
using PSO2SERVER.Database;
namespace PSO2SERVER.Protocol.Handlers
2024-09-16 02:56:02 +08:00
{
[PacketHandlerAttr(0x03, 0x0C)]
2024-09-20 21:58:37 +08:00
public class ServerPong : PacketHandler
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)
{
2024-09-20 21:58:37 +08:00
Logger.Write("[HI!] 收到 {0} Ping回应 ", context._account.Username);
2024-09-16 02:56:02 +08:00
}
#endregion
}
}