Class Ieee80211Prim_AuthenticateRequest

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

C++ definition

Losely based on MLME-AUTHENTICATE.request.

Note: the "authType" parameter (Open System, Shared Key, etc) is omitted. The authentication procedure is simulated by this model by exchanging a number of "dummy" authentication frames without real contents, and it is configured in the AP how many authentication steps it requires.

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
Ieee80211PrimRequest class

Base class for request primitives

Fields:

Name Type Description
address MACAddress
timeout simtime_t

Source code:

//
// Losely based on MLME-AUTHENTICATE.request.
//
// Note: the "authType" parameter (Open System, Shared Key, etc) is omitted.
// The authentication procedure is simulated by this model by exchanging
// a number of "dummy" authentication frames without real contents,
// and it is configured in the AP how many authentication steps it requires.
//
class Ieee80211Prim_AuthenticateRequest extends Ieee80211PrimRequest
{
    MACAddress address;
    simtime_t timeout;
}