Class Ieee80211AssociationResponseFrameBody

File: src/inet/linklayer/ieee80211/mgmt/Ieee80211MgmtFrames.msg

C++ definition

Association response frame body format

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.

Extends:

Name Type Description
Ieee80211FrameBody class

Frame body base class used to hide various frame body types

Known subclasses:

Name Type Description
Ieee80211ReassociationResponseFrameBody class

Re-association response frame body format (same as AssociationResponse)

Fields:

Name Type Description
bodyLength short

not an actual frame field

statusCode int
aid short
supportedRates Ieee80211SupportedRatesElement

Source code:

//
// Association response frame body format
//
class Ieee80211AssociationResponseFrameBody extends Ieee80211FrameBody
{
    bodyLength = 26; // assuming a 8-character SSID and 4 supported datarates       //FIXME not a static value
    int statusCode @enum(Ieee80211StatusCode);
    short aid;
    Ieee80211SupportedRatesElement supportedRates;
}