NDIS_MAC_LINE_DOWN structure
Note NDIS 5. x has been deprecated and is superseded by NDIS 6. x. For new NDIS driver development, see Network Drivers Starting with Windows Vista. For information about porting NDIS 5. x drivers to NDIS 6. x, see Porting NDIS 5.x Drivers to NDIS 6.0.
The NDIS_MAC_LINE_DOWN structure contains information associated with a line-down indication made by a WAN miniport driver.
Syntax
typedef struct _NDIS_MAC_LINE_DOWN {
NDIS_HANDLE NdisLinkContext;
} NDIS_MAC_LINE_DOWN, *PNDIS_MAC_LINE_DOWN;
Members
- NdisLinkContext
Specifies the handle, identifying the link, that the miniport driver set in the line-up indication when the link was established.
Remarks
A WAN NIC driver calls NdisMIndicateStatus with this type of indication when a link between a local node and a remote node in a wide area network becomes inactive.
NDISWAN forwards such a line-down indication to the affected protocol(s), formatted as an NDIS_WAN_LINE_DOWN structure.
Requirements
Header |
Ndiswan.h (include Ndiswan.h) |
See also