Package: inet.linklayer.ieee80211.mgmt
Ieee80211MgmtAdhoc
simple moduleIEEE 802.11 management module used for ad-hoc mode. This implementation never sends control or management frames, and discards any such frame received. Distributed beacon generation is not modeled.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Parameters
Name | Type | Default value | Description |
---|---|---|---|
mibModule | string | ||
macModule | string |
The path to the MAC module |
|
interfaceTableModule | string |
The path to the InterfaceTable 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 |
Called methods (observed)
function | info | call from |
---|---|---|
inet::ieee80211::Ieee80211MgmtAdhoc::handleOperationStage | handleOperationStage | ScenarioManager, SimpleEpEnergyManagement, SimpleEpEnergyStorage |
Source code
// // IEEE 802.11 management module used for ad-hoc mode. // This implementation never sends control or management frames, and discards // any such frame received. Distributed beacon generation is not modeled. // simple Ieee80211MgmtAdhoc like IIeee80211Mgmt { parameters: string mibModule; string macModule; // The path to the MAC module string interfaceTableModule; // The path to the InterfaceTable 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/Ieee80211MgmtAdhoc.ned