Packet Ieee80211DataFrame

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

Format of the 802.11 data frame

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Extends:

Ieee80211DataOrMgmtFrame (packet)

Common base class for 802.11 data and management frames

Fields:

Name Type Description
byteLength
transmitterAddress MACAddress

aka address2

fragmentNumber short
fromDS bool
address3 MACAddress
type short

type and subtype

receiverAddress MACAddress

aka address1

sequenceNumber short
duration simtime_t

"duration" in the Duration/ID field (-1=no duration)

address4 MACAddress
toDS bool
AID short

"id" (Association ID) in the Duration/ID field (-1=no ID)

retry bool
moreFragments bool

Source code:

//
// Format of the 802.11 data frame
//
packet Ieee80211DataFrame extends Ieee80211DataOrMgmtFrame
{
    type = ST_DATA;
    byteLength = 34;
    MACAddress address4;
}