NetAdapterWakeSetEapolPacketCapabilities - NtDoc

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

void NetAdapterWakeSetEapolPacketCapabilities(
  [_In_] NETADAPTER                                       Adapter,
  [_In_] const NET_ADAPTER_WAKE_EAPOL_PACKET_CAPABILITIES *Capabilities
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-netadapter-netadapterwakeseteapolpacketcapabilities)

Description

The NetAdapterWakeSetEapolPacketCapabilities function sets a network adapter's EAP over LAN (EAPOL) packet wake on LAN (WoL) capabilities.

Parameters

Adapter [_In_]

A handle to a NETADAPTER object the client driver previously created with a call to NetAdapterCreate.

Capabilities [_In_]

A pointer to a driver-allocated and initialized NET_ADAPTER_WAKE_EAPOL_PACKET_CAPABILITIES structure that describes the network adapter's EAPOL packet WoL capabilities.

Remarks

Client drivers must call NET_ADAPTER_WAKE_EAPOL_PACKET_CAPABILITIES_INIT to initialize the NET_ADAPTER_WAKE_EAPOL_PACKET_CAPABILITIES structure, then set the structure's members appropriately before calling this function. Client drivers typically call this function from within their EvtDevicePrepareHardware callback, but must call this function before calling NetAdapterStart.

See also

NET_ADAPTER_WAKE_EAPOL_PACKET_CAPABILITIES

NET_ADAPTER_WAKE_EAPOL_PACKET_CAPABILITIES_INIT

EvtDevicePrepareHardware

NetAdapterStart