NdisClNotifyCloseAddressFamilyComplete - NtDoc

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

VOID NdisClNotifyCloseAddressFamilyComplete(
  [in] NDIS_HANDLE NdisAfHandle,
  [in] NDIS_STATUS Status
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ndis-ndisclnotifycloseaddressfamilycomplete)

NdisClNotifyCloseAddressFamilyComplete function

Description

The NdisClNotifyCloseAddressFamilyComplete function returns the final status of an address family (AF) close operation for which the caller's ProtocolClNotifyCloseAf function returned NDIS_STATUS_PENDING.

Parameters

NdisAfHandle [in]

An AF handle that NDIS supplied to the caller's NdisClOpenAddressFamilyEx function.

Status [in]

The completion status for close AF notification.

Status can be one of the following:

NDIS_STATUS_SUCCESS

The client successfully closed its address family.

NDIS_STATUS_XXX

The client failed the request for some driver-determined reason.

Remarks

CoNDIS clients call the NdisClNotifyCloseAddressFamilyComplete function to complete a close AF notification. A client must call NdisClNotifyCloseAddressFamilyComplete after its ProtocolClNotifyCloseAf function returns NDIS_STATUS_PENDING.

After the client calls NdisClNotifyCloseAddressFamilyComplete, NDIS calls the call manager's ProtocolCmNotifyCloseAfComplete function to complete operation for the call manager.

See also

NdisClOpenAddressFamilyEx

ProtocolClNotifyCloseAf

ProtocolCmNotifyCloseAfComplete