MGSL_RAWDATA


This structure is contained in the Buffer member of the DLINDICATION_RAWDATA primitive. The structure contains a received frame with an unrecognized address. A copy of the address is contained in the Address member with the length set in the AddressLength member. These members are suitable for copying to the address members of the MGSL_DLPARAMS structure. The complete frame (without the CRC) is contained in the Data member with the DataLength member set to the frame size in bytes.

typedef struct _MGSL_RAWDATA
{
    UCHAR Address[MGSL_MAX_ADDRESS];
    ULONG AddressLength;
    ULONG DataLength;
    UCHAR Data[1];
} MGSL_RAWDATA, *PMGSL_RAWDATA;

Previous Contents Next