Ieee80211DataFrameWithSNAP

Namespace inet::ieee80211

Ieee80211DataFrameWithSNAP

packet

802.11 data frame with the 8-byte SNAP header (AA AA 03, 00 00 00, <2-byte EtherType>)

Extends

Name Type Description
Ieee80211DataFrame (unknown -- not in documented files)

Fields

Name Type Description
byteLength

TODO: LLC(SNAP) headers should be in a separate packet

etherType int

Source code

//
// 802.11 data frame with the 8-byte SNAP header (AA AA 03, 00 00 00, <2-byte ~EtherType>)
//
packet Ieee80211DataFrameWithSNAP extends Ieee80211DataFrame
{
    byteLength = DATAFRAME_HEADER_MINLENGTH / 8 + SNAP_HEADER_BYTES; // TODO: LLC(SNAP) headers should be in a separate packet
    int etherType @enum(EtherType);
}

File: src/inet/linklayer/ieee80211/mac/Ieee80211Frame.msg