mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-23 13:17:45 +00:00
30 lines
756 B
C#
30 lines
756 B
C#
![]() |
using System;
|
|||
|
using System.IO;
|
|||
|
|
|||
|
namespace FFXIVClassic_Map_Server.packets.receive
|
|||
|
{
|
|||
|
class _0x07Packet
|
|||
|
{
|
|||
|
public bool invalidPacket = false;
|
|||
|
public uint timestamp;
|
|||
|
public uint unknown;
|
|||
|
|
|||
|
public _0x07Packet(byte[] data)
|
|||
|
{
|
|||
|
using (MemoryStream mem = new MemoryStream(data))
|
|||
|
{
|
|||
|
using (BinaryReader binReader = new BinaryReader(mem))
|
|||
|
{
|
|||
|
try{
|
|||
|
timestamp = binReader.ReadUInt32();
|
|||
|
unknown = binReader.ReadUInt32();
|
|||
|
}
|
|||
|
catch (Exception){
|
|||
|
invalidPacket = true;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|