Re-association response frame format (management frame + body)
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 |
---|---|---|
Ieee80211ManagementFrame | packet |
Base class for 802.11 management frames (subclasses will add frame body contents) |
Name | Type | Description |
---|---|---|
type | short |
type and subtype |
byteLength | ||
body | Ieee80211ReassociationResponseFrameBody | |
address3 | MACAddress | |
fragmentNumber | short | |
sequenceNumber | uint16 | |
transmitterAddress | MACAddress |
aka address2 |
toDS | bool | |
fromDS | bool | |
retry | bool | |
moreFragments | bool | |
duration | simtime_t |
TODO: rename to durationField (levy) |
AID | short |
"id" (Association ID) in the Duration/ID field (-1=no ID) |
receiverAddress | MACAddress |
aka address1 |
MACArrive | simtime_t |
FIXME remove it, technical data, used inside of MAC module |
// // Re-association response frame format (management frame + body) // packet Ieee80211ReassociationResponseFrame extends Ieee80211ManagementFrame { type = ST_REASSOCIATIONRESPONSE; byteLength = 28+getBody().getBodyLength(); //FIXME variable bodyLength Ieee80211ReassociationResponseFrameBody body; }