NET_PACKET_RSC structure (rsctypes.h)

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

Syntax

typedef struct _NET_PACKET_RSC {
  union {
    struct {
      UINT16 CoalescedSegmentCount;
      UINT16 DuplicateAckCount;
    } TCP;
  } DUMMYUNIONNAME;
} NET_PACKET_RSC;

Members

DUMMYUNIONNAME

A union that contains the TCP member.

DUMMYUNIONNAME.TCP

A structure that holds the TCP RSC information.

DUMMYUNIONNAME.TCP.CoalescedSegmentCount

The number of data segments that were coalesced.

DUMMYUNIONNAME.TCP.DuplicateAckCount

The number of duplicate ACK messages.

Remarks

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

Requirements

Requirement Value
Header rsctypes.h

See also

Packet descriptors and extensions