mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-23 13:17:45 +00:00
34 lines
794 B
C#
34 lines
794 B
C#
![]() |
using FFXIVClassic_Lobby_Server.packets;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.IO;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace FFXIVClassic_Map_Server.packets.receive
|
|||
|
{
|
|||
|
class PingPacket
|
|||
|
{
|
|||
|
bool invalidPacket = false;
|
|||
|
|
|||
|
public uint time;
|
|||
|
|
|||
|
public PingPacket(byte[] data)
|
|||
|
{
|
|||
|
using (MemoryStream mem = new MemoryStream(data))
|
|||
|
{
|
|||
|
using (BinaryReader binReader = new BinaryReader(mem))
|
|||
|
{
|
|||
|
try{
|
|||
|
time = binReader.ReadUInt32();
|
|||
|
}
|
|||
|
catch (Exception){
|
|||
|
invalidPacket = true;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|