mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-23 21:27:46 +00:00
31 lines
863 B
C#
31 lines
863 B
C#
![]() |
using System;
|
|||
|
using System.IO;
|
|||
|
|
|||
|
namespace FFXIVClassic_Map_Server.packets.receive
|
|||
|
{
|
|||
|
class CountdownRequestPacket
|
|||
|
{
|
|||
|
public bool invalidPacket = false;
|
|||
|
public byte countdownLength;
|
|||
|
public ulong syncTime;
|
|||
|
|
|||
|
public CountdownRequestPacket(byte[] data)
|
|||
|
{
|
|||
|
using (MemoryStream mem = new MemoryStream(data))
|
|||
|
{
|
|||
|
using (BinaryReader binReader = new BinaryReader(mem))
|
|||
|
{
|
|||
|
try{
|
|||
|
countdownLength = binReader.ReadByte();
|
|||
|
binReader.BaseStream.Seek(8, SeekOrigin.Begin);
|
|||
|
syncTime = binReader.ReadUInt64();
|
|||
|
}
|
|||
|
catch (Exception){
|
|||
|
invalidPacket = true;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|