Ieee80211MgmtAdhoc

Package: inet.linklayer.ieee80211.mgmt

Ieee80211MgmtAdhoc

simple module

802.11 management module used for ad-hoc mode. Relies on the MAC layer (Ieee80211Mac) for reception and transmission of frames.

This implementation never sends control or management frames, and discards any such frame received. Distributed beacon generation is not modelled. Only data frames are understood or sent at any time.

This module never switches channels, that is, it will operate on the channel the physical layer is configured for (see channelNumber in Ieee80211Radio).

Ieee80211MgmtAdhoc

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)

functioninfocall from
inet::ieee80211::Ieee80211MgmtAdhoc::handleOperationStagehandleOperationStageScenarioManager, SimpleEpEnergyManagement, SimpleEpEnergyStorage

Source code

//
// 802.11 management module used for ad-hoc mode.
// Relies on the MAC layer (~Ieee80211Mac) for reception and transmission of frames.
//
// This implementation never sends control or management frames, and discards
// any such frame received. Distributed beacon generation is not modelled.
// Only data frames are understood or sent at any time.
//
// This module never switches channels, that is, it will operate on the channel
// the physical layer is configured for (see channelNumber in ~Ieee80211Radio).
//
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