Edit

Share via


PKTMON_EVT_STREAM_PACKET_DESCRIPTOR structure (pktmonnpik.h)

The PKTMON_EVT_STREAM_PACKET_DESCRIPTOR structure contains a packet descriptor used for event streaming.

Syntax

typedef struct _PKTMON_EVT_STREAM_PACKET_DESCRIPTOR {
  ULONG PacketOriginalLength;
  ULONG PacketLoggedLength;
  ULONG PacketMetaDataLength;
} PKTMON_EVT_STREAM_PACKET_DESCRIPTOR;

Members

PacketOriginalLength

The original packet length.

PacketLoggedLength

Represents the length of the part of the packet that was logged. This will be same as PacketOriginalLength if the packet was not truncated when logged, otherwise it will be shorter.

PacketMetaDataLength

Length of the metadata.

Note

It's important to rely on PacketMetaDataLength instead of the size of structure PKTMON_EVT_STREAM_METADATA as this structure might increase in size in future releases.

Requirements

Requirement Value
Header pktmonnpik.h

See also