Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
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_WAN_LINE_DOWN structure contains information associated with a line-down indication.
Syntax
typedef struct _NDIS_WAN_LINE_DOWN {
UCHAR RemoteAddress[6];
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.
Remarks
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
Header |
Ndis.h (include Ndis.h) |
See also