Hello

My programm receives array of bytes over SSL from Delphi program.
I convert it into structure and have en error:
Type 'SetOrder' cannot be marshaled as an unmanaged structure; no meaningful size or offset can be computed

Delphi:
Code:
TTLVHADPrefix = packed record
  ProtocolID: TProtocolID;
  Version: Byte;
end;
Code:
TTLVHAD = packed record
  Prefix: TTLVHADPrefix;
...