NET_PACKET_RSC_TIMESTAMP structure (rsctypes.h)

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

Syntax

typedef struct _NET_PACKET_RSC_TIMESTAMP {
  union {
    struct {
      UINT32 RscTcpTimestampDelta;
    } TCP;
  } DUMMYUNIONNAME;
} NET_PACKET_RSC_TIMESTAMP;

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.

Requirements

Requirement Value
Header rsctypes.h

See also

Packet descriptors and extensions