NdisIfDeleteIfStackEntry - NtDoc

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

VOID NdisIfDeleteIfStackEntry(
  [in] NET_IFINDEX HigherLayerIfIndex,
  [in] NET_IFINDEX LowerLayerIfIndex
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

NdisIfDeleteIfStackEntry function

Description

The NdisIfDeleteIfStackEntry function deletes information about the ordering of two network interfaces in the NDIS interface stack.

Parameters

HigherLayerIfIndex [in]

The network interface index for the interface that was higher in the stack table.

LowerLayerIfIndex [in]

The network interface index for the interface that was lower in the stack table.

Remarks

NDIS drivers call NdisIfDeleteIfStackEntry to delete a stack entry that was previously added by calling the NdisIfAddIfStackEntry function. NDIS deletes the stack entry from its interface stack table if it finds a matching entry.

NDIS maintains an interface stack table (ifStackTable from RFC 2863). NDIS provides the NdisIfAddIfStackEntry and NdisIfDeleteIfStackEntry functions to add and delete entries in this table.

See also

NdisIfAddIfStackEntry