NDIS_WAN_FRAGMENT 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_WAN_FRAGMENT structure contains information associated with a fragment indication.
Syntax
typedef struct _NDIS_WAN_FRAGMENT {
UCHAR RemoteAddress[6];
UCHAR LocalAddress[6];
} NDIS_WAN_FRAGMENT, *PNDIS_WAN_FRAGMENT;
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 fragment indication, NDISWAN forwards the indication to interested protocol(s), formatted in this structure.
Requirements
Header |
Ndis.h (include Ndis.h) |
See also