NET_EXTENSION_QUERY - NtDoc

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

typedef struct _NET_EXTENSION_QUERY {
  ULONG              Size;
  PCWSTR             Name;
  ULONG              Version;
  NET_EXTENSION_TYPE Type;
} NET_EXTENSION_QUERY;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-netadapterpacket-_net_extension_query)

NET_EXTENSION_QUERY structure

Description

The NET_EXTENSION_QUERY structure represents a query for a packet or fragment extension.

Members

Size

The size of this structure, in bytes.

Name

The name of the extension to be queried.

Version

The version of the extension to be queried.

Type

A NET_EXTENSION_TYPE value that specifies the type of extension being queried.

Remarks

Call NET_EXTENSION_QUERY_INIT to initialize this structure.

For more info about extensions, see Packet descriptors and extensions.

For a code example of querying extension offsets, see Transmit and receive queues.

See also

Packet descriptors and extensions

Transmit and receive queues

NET_EXTENSION_QUERY_INIT

NET_EXTENSION_TYPE