PFN_WSK_FREE_ADDRESS_INFO - NtDoc

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

PFN_WSK_FREE_ADDRESS_INFO PfnWskFreeAddressInfo;

VOID PfnWskFreeAddressInfo(
  [in] PWSK_CLIENT Client,
  [in] PADDRINFOEXW AddrInfo
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-wsk-pfn_wsk_free_address_info)

PFN_WSK_FREE_ADDRESS_INFO callback function

Description

The WskFreeAddressInfo function frees address information that the WskGetAddressInfo function has dynamically allocated.

Parameters

Client [in]

[in] A pointer to a WSK_CLIENT structure that was returned through the WskProviderNpi parameter of the WskCaptureProviderNPI function.

AddrInfo [in]

[in] A pointer to a linked list of one or more ADDRINFOEXW structures that contain response information about the host. This pointer was returned through the Result parameter of the WskGetAddressInfo function.

The ADDRINFOEXW structure is defined in the Ws2def.h header file. It is identical to the addrinfoex structure.

Important The Ws2def.h header file is automatically included in Wsk.h. Do not use Ws2def.h directly.

See also

WSK_CLIENT

WskCaptureProviderNPI

WskGetAddressInfo