NET_PACKET_RSC 结构 (rsctypes.h)

NET_PACKET_RSC 结构包含数据包的接收段合并 (RSC) 信息。

语法

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

成员

DUMMYUNIONNAME

包含 TCP 成员的联合。

DUMMYUNIONNAME.TCP

保存 TCP RSC 信息的 结构。

DUMMYUNIONNAME.TCP.CoalescedSegmentCount

已合并的数据段数。

DUMMYUNIONNAME.TCP.DuplicateAckCount

重复的 ACK 消息数。

注解

客户端驱动程序可以通过调用 NetExtensionGetPacketRsc 获取数据包的此结构。

要求

要求
Header rsctypes.h

另请参阅

数据包描述符和扩展