Edit

PS_FLOW_STATS structure (ntddpsch.h)

The PS_FLOW_STATS structure provides statistical packet shaper information about a particular flow. Note that the PS_FLOW_STATS structure is used in conjunction with the PS_COMPONENT_STATS structure.

Syntax

typedef struct _PS_FLOW_STATS {
  ULONG         DroppedPackets;
  ULONG         PacketsScheduled;
  ULONG         PacketsTransmitted;
  LARGE_INTEGER BytesScheduled;
  LARGE_INTEGER BytesTransmitted;
} PS_FLOW_STATS, *PPS_FLOW_STATS;

Members

DroppedPackets

Number of packets that have been dropped from the flow.

PacketsScheduled

Number of packets that have been scheduled for transmission on the flow.

PacketsTransmitted

Number of packets that have been transmitted on the flow.

BytesScheduled

Number of bytes that have been scheduled for transmission on the flow.

BytesTransmitted

Number of bytes that have been transmitted on the flow.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Header ntddpsch.h

See also

FLOWSPEC

PS_COMPONENT_STATS