Packet Ieee80211MsduSubframe

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

C++ definition

(no description)

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Fields:

Name Type Description
bitLength

+ snap header if necessary

sa MACAddress

source addr.

da MACAddress

destination addr.

length int
etherType int

TODO: review optional snap header (the standard does not define it: Figure 8-32—A-MSDU subframe structure)

Source code:

packet Ieee80211MsduSubframe
{
    bitLength = LENGTH_A_MSDU_SUBFRAME_HEADER; // + snap header if necessary
    MACAddress sa; // source addr.
    MACAddress da; // destination addr.
    int length;
    int etherType @enum(EtherType); // TODO: review optional snap header (the standard does not define it: Figure 8-32—A-MSDU subframe structure) 
}