NET_PACKET_RSC_TIMESTAMP - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// rsctypes.h

typedef struct _NET_PACKET_RSC_TIMESTAMP {
  union {
    struct {
      UINT32 RscTcpTimestampDelta;
    } TCP;
  } DUMMYUNIONNAME;
} NET_PACKET_RSC_TIMESTAMP;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-rsctypes-_net_packet_rsc_timestamp)

NET_PACKET_RSC_TIMESTAMP structure

Description

The NET_PACKET_RSC_TIMESTAMP structure contains receive segment coalescence (RSC) timestamp information for a packet.

Members

DUMMYUNIONNAME

A union that contains the TCP member.

DUMMYUNIONNAME.TCP

A structure that holds the TCP RSC timestamp information.

DUMMYUNIONNAME.TCP.RscTcpTimestampDelta

The absolute delta between the earliest and the latest TCP timestamp value seen in the sequence of coalesced segments comprising the Single Coalesced Unit (SCU).

Remarks

Client drivers can obtain this structure for a packet by calling NetExtensionGetPacketRscTimestamp.

See also

Packet descriptors and extensions