2.2.3.6.3 COMM_TO

The structure of the COMM_TO packet element is as follows:

 typedef struct _COMM_TO {
   USHORT CommType;
   ULONG Length;
   ULONG LengthGuid;
   GUID Guid;
   ULONG LengthName;
   wchar_t Name[];
 } COMM_TO,
  *PCOMM_TO;

CommType: A 16-bit, unsigned integer that indicates the type of this COMM_PACKET element. MUST be set to 0x0003.

Length: A 32-bit, unsigned integer that indicates the length, in bytes, of the COMM_TO packet element data following the Length field.

LengthGuid: A 32-bit, unsigned integer indicates the length, in bytes, of the GUID field. MUST be 0x00000010.

Guid: A field of type GUID that indicates the GUID of the receiving partner.

LengthName: A 32-bit, unsigned integer that indicates the length, in bytes, of the Name field, including the NULL terminator.

Name: A Unicode UTF-16 string that identifies the receiving partner. MUST be a variable-length array that contains a NULL-terminated string (0x0000) of 16-bit (Unicode) characters.