Windows Driver Kit: Network Devices and Protocols
NDIS_WAN_LINE_DOWN
The NDIS_WAN_LINE_DOWN structure contains information associated with a line-down indication.
typedef struct _NDIS_WAN_LINE_DOWN {
IN UCHAR RemoteAddress[6];
IN UCHAR LocalAddress[6];
} NDIS_WAN_LINE_DOWN, *PNDIS_WAN_LINE_DOWN;
Members
- RemoteAddress
- Specifies the address of the remote node in Ethernet-style format, as set up when the link was established in the initial line-up indication.
- LocalAddress
- Specifies the address of the remote node in Ethernet-style format, as set up when the link was established in the initial line-up indication.
Comments
When a WAN miniport driver calls NdisMIndicateStatus with a line-down indication, NDISWAN forwards the indication to interested protocol(s), formatted in this structure.
Requirements
Headers: Declared in ndis.h. Include ndis.h.
See Also
NDIS_MAC_LINE_DOWN, NdisMIndicateStatus, NDIS_WAN_FRAGMENT, NDIS_WAN_LINE_UP, ProtocolStatus