NDIS_UDP_RSC_OFFLOAD_NET_BUFFER_LIST_INFO - NtDoc

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

typedef struct _NDIS_UDP_RSC_OFFLOAD_NET_BUFFER_LIST_INFO {
  union {
    struct {
      USHORT SegCount;
      USHORT SegSize;
    } Receive;
    PVOID Value;
  };
} NDIS_UDP_RSC_OFFLOAD_NET_BUFFER_LIST_INFO, *PNDIS_UDP_RSC_OFFLOAD_NET_BUFFER_LIST_INFO;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-nbluro-ndis_udp_rsc_offload_net_buffer_list_info)

Description

The NDIS_UDP_RSC_OFFLOAD_NET_BUFFER_LIST_INFO structure specifies the UDP Receive Segment Coalescing Offload (URO) information for a NET_BUFFER_LIST structure.

Members

Receive

A structure that contains the UDP RSC offload information.

Receive.SegCount

The number of segments that were coalesced into the NET_BUFFER_LIST structure.

Receive.SegSize

The size, in bytes, of the individual segments that were coalesced into the NET_BUFFER_LIST structure.

Value

A PVOID version of the UDP RSC information. Miniport drivers can use this member to access the raw information instead of the specific fields.

Remarks

The NDIS_UDP_RSC_OFFLOAD_NET_BUFFER_LIST_INFO structure is part of the information that is included in a NET_BUFFER_LIST structure.

See also

NET_BUFFER_LIST

UDP Receive Segment Coalescing Offload (URO)