Module Interface IMACProtocol

Package: inet.linklayer.contract
File: src/inet/linklayer/contract/IMACProtocol.ned

This interface provides an abstraction for different network protocols.

IMACProtocol

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.

Known subclasses:

Name Type Description
IIeee80211Mac module interface

Module interface for all ieee802.11 mac modul

Used in compound modules:

Name Type Description
WirelessNic compound module (no description)

Properties:

Name Value Description
display i=block/rxtx

Source code:

//
// This interface provides an abstraction for different network protocols.
//
moduleinterface IMACProtocol
{
    parameters:
        @display("i=block/rxtx");
    gates:
        input upperLayerIn @labels(INetworkDatagram/down);
        output upperLayerOut @labels(INetworkDatagram/up);
        input lowerLayerIn @labels(ILinkLayerFrame/up);
        output lowerLayerOut @labels(ILinkLayerFrame/down);
}