NET_ADAPTER_POWER_OFFLOAD_NS_CAPABILITIES - NtDoc

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

typedef struct _NET_ADAPTER_POWER_OFFLOAD_NS_CAPABILITIES {
  ULONG   Size;
  BOOLEAN NSOffload;
  SIZE_T  MaximumOffloadCount;
} NET_ADAPTER_POWER_OFFLOAD_NS_CAPABILITIES;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-netadapter-_net_adapter_power_offload_ns_capabilities)

NET_ADAPTER_POWER_OFFLOAD_NS_CAPABILITIES structure

Description

The NET_ADAPTER_POWER_OFFLOAD_NS_CAPABILITIES structure describes a net adapter's capabilities for IPv6 Neighbor Solicitation (NS) low power protocol offload.

Members

Size

The size of this structure, in bytes.

NSOffload

A boolean value that specifies if this net adapter supports IPv6 NS protocol offload.

MaximumOffloadCount

The maximum number of NS protocol offloads that the hardware supports.

Remarks

Call NET_ADAPTER_POWER_OFFLOAD_NS_CAPABILITIES_INIT to initialize this structure, then call NetAdapterPowerOffloadSetNsCapabilities to set the net adapter's NS protocol offload capabilities. Client drivers typically call NetAdapterPowerOffloadSetNsCapabilities when starting a net adapter, but before calling NetAdapterStart.

See also

Configuring power management

NET_ADAPTER_POWER_OFFLOAD_NS_CAPABILITIES_INIT

NetAdapterPowerOffloadSetNsCapabilities

NetAdapterStart