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

@@ -7,7 +7,8 @@ namespace DiscImageChef.Devices.Remote
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
public struct DicPacketHeader
{
public ulong id;
public uint remote_id;
public uint packet_id;
public uint len;
public byte version;