Ieee80211ProbeRequestFrameBody

Namespace inet::ieee80211

Ieee80211ProbeRequestFrameBody

class

Probe request frame body format

Extends

Name Type Description
Ieee80211FrameBody (unknown -- not in documented files)

Fields

Name Type Description
bodyLength

assuming a 8-character SSID //FIXME bodyLength = 2 + length(SSID) + 2 + supportedRates.numRates

SSID string
supportedRates Ieee80211SupportedRatesElement

Source code

//
// Probe request frame body format
//
class Ieee80211ProbeRequestFrameBody extends Ieee80211FrameBody
{
    bodyLength = 12; // assuming a 8-character SSID     //FIXME bodyLength = 2 + length(SSID) + 2 + supportedRates.numRates
    string SSID;
    Ieee80211SupportedRatesElement supportedRates;
}

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