// 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
No description available.
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.
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.
The NDIS_UDP_RSC_OFFLOAD_NET_BUFFER_LIST_INFO structure is part of the information that is included in a NET_BUFFER_LIST structure.
UDP Receive Segment Coalescing Offload (URO)