Compartilhar via


NdisIfDeleteIfStackEntry (Compact 2013)

3/26/2014

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

Syntax

VOID
  NdisIfDeleteIfStackEntry(
    IN NET_IFINDEX  HigherLayerIfIndex,
    IN NET_IFINDEX  LowerLayerIfIndex
    );

Parameters

  • HigherLayerIfIndex
    The network interface index for the interface that was higher in the stack table.
  • LowerLayerIfIndex
    The network interface index for the interface that was lower in the stack table.

Return Value

None

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.

Requirements

Header

ndis.h

See Also

Reference

NDIS Network Interface Functions
NdisIfAddIfStackEntry