Struct Ieee80211SupportedRatesElement

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

Structure to store supported rates

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.

Fields:

Name Type Description
numRates short

number of rates (max 8)

rate double[8]

in Mbit/s; should be multiple of 500 kbit/s

Source code:

//
// Structure to store supported rates
//
struct Ieee80211SupportedRatesElement
{
    short numRates; // number of rates (max 8)
    double rate[8]; // in Mbit/s; should be multiple of 500 kbit/s
}