Package: inet.linklayer.ieee80211.mgmt
Ieee80211MgmtStaSimplified
simple moduleUsed in 802.11 infrastructure mode for a station (STA).
This management module variant does not implement scanning, nor does it send or expect to receive any management frames. It simply treats the station as associated to the configured AP all the time.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Parameters
Name | Type | Default value | Description |
---|---|---|---|
accessPointAddress | string |
MAC address of associate AP |
|
interfaceTableModule | string | ||
mibModule | string | ||
macModule | string |
The path to the MAC module |
Properties
Name | Value | Description |
---|---|---|
display | i=block/cogwheel |
Gates
Name | Direction | Size | Description |
---|---|---|---|
macIn | input | ||
macOut | output | ||
agentIn | input |
unused dummy to statisfy the IIeee80211Mgmt interface |
|
agentOut | output |
unused dummy to statisfy the IIeee80211Mgmt interface |
Tagging operations (observed)
tagType | tagAction |
---|---|
inet::NextHopInterfaceData | findTag |
Source code
// // Used in 802.11 infrastructure mode for a station (STA). // // This management module variant does not implement scanning, nor does // it send or expect to receive any management frames. It simply treats the // station as associated to the configured AP all the time. // simple Ieee80211MgmtStaSimplified like IIeee80211Mgmt { parameters: string accessPointAddress; // MAC address of associate AP string interfaceTableModule; string mibModule; string macModule; // The path to the MAC module @display("i=block/cogwheel"); gates: input macIn @labels(Ieee80211MacHeader); output macOut @labels(Ieee80211MacHeader); input agentIn @loose; // unused dummy to statisfy the IIeee80211Mgmt interface output agentOut @loose; // unused dummy to statisfy the IIeee80211Mgmt interface }File: src/inet/linklayer/ieee80211/mgmt/Ieee80211MgmtStaSimplified.ned