Use 32-bit fields for packet ID.

This commit is contained in:
2019-10-26 15:34:00 +01:00
parent 28f9215319
commit 934a836412
3 changed files with 30 additions and 28 deletions

View File

@@ -2,7 +2,8 @@ namespace DiscImageChef.Devices.Remote
{
public class Consts
{
public const ulong PacketId = 0x6873678065677584; // "DICPACKT"
public const uint RemoteId = 0x52434944; // "DICR"
public const uint PacketId = 0x544B4350; // "PCKT"
public const int PacketVersion = 1;
public const int MaxProtocol = 1;
}