2.2.2.34 WINSTATIONLOADINDICATORDATA

The WINSTATIONLOADINDICATORDATA structure defines data used for the load balancing of a server.

 typedef struct _WINSTATIONLOADINDICATORDATA {
   ULONG RemainingSessionCapacity;
   LOADFACTORTYPE LoadFactor;
   ULONG TotalSessions;
   ULONG DisconnectedSessions;
   LARGE_INTEGER IdleCPU;
   LARGE_INTEGER TotalCPU;
   ULONG RawSessionCapacity;
   ULONG reserved[9];
 } WINSTATIONLOADINDICATORDATA,
  *PWINSTATIONLOADINDICATORDATA;

RemainingSessionCapacity: The estimated number of additional sessions that can be supported given the CPU constraint.

LoadFactor: Indicates the most constrained current resource.

TotalSessions: The total number of sessions.

DisconnectedSessions: The number of disconnected sessions.

IdleCPU: This is always set to 0.

TotalCPU: This is always set to 0.

RawSessionCapacity: The raw number of sessions capacity.

reserved: Reserved.