Edit

HV_CONNECTION_ID

Overview

Connections are identified by 32-bit IDs. The high 8 bits are reserved and must be zero. All connection IDs are unique within a partition.

Syntax

typedef union
{
   UINT32 AsUInt32;
   struct
   {
       UINT32 Id:24;
       UINT32 Reserved:8;
   };
} HV_CONNECTION_ID;