Format of the 802.11 data frame
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Name | Type | Description |
---|---|---|
Ieee80211DataOrMgmtFrame | packet |
Common base class for 802.11 data and management frames |
Name | Type | Description |
---|---|---|
type | short |
type and subtype |
byteLength | ||
address4 | MACAddress | |
address3 | MACAddress | |
fragmentNumber | short | |
sequenceNumber | short | |
transmitterAddress | MACAddress |
aka address2 |
toDS | bool | |
fromDS | bool | |
retry | bool | |
moreFragments | bool | |
duration | simtime_t |
"duration" in the Duration/ID field (-1=no duration) |
AID | short |
"id" (Association ID) in the Duration/ID field (-1=no ID) |
receiverAddress | MACAddress |
aka address1 |
// // Format of the 802.11 data frame // packet Ieee80211DataFrame extends Ieee80211DataOrMgmtFrame { type = ST_DATA; byteLength = 34; MACAddress address4; }