// 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 referenceNo description available.
The NET_PACKET_RSC_TIMESTAMP structure contains receive segment coalescence (RSC) timestamp information for a packet.
DUMMYUNIONNAMEA union that contains the TCP member.
DUMMYUNIONNAME.TCPA structure that holds the TCP RSC timestamp information.
DUMMYUNIONNAME.TCP.RscTcpTimestampDeltaThe absolute delta between the earliest and the latest TCP timestamp value seen in the sequence of coalesced segments comprising the Single Coalesced Unit (SCU).
Client drivers can obtain this structure for a packet by calling NetExtensionGetPacketRscTimestamp.
Packet descriptors and extensions