Module Interface IOverlay

Package: oversim.common
File: src/common/IOverlay.ned

Interface for overlay compound modules

Author: Ingmar Baumgart, Bernhard Heep, Stephan Krause

IOverlay

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Used in compound modules:

Name Type Description
InetOverlayHost compound module

Host that participates in the overlay

InetOverlayHost6 compound module

Host that participates in the overlay

OverlayAccessRouter compound module

Access router that participates in the overlay

OverlayAccessRouter6 compound module

Access router that participates in the overlay

OverlayRouter compound module

Router in the overlay network

OverlayRouter6 compound module

Router in the overlay network

ReaSEOverlayHost compound module

Host that participates in the overlay

SimpleMultiOverlayHost compound module

Host in the simple network that participates in the overlay

SimpleOverlayHost compound module

Host in the simple network that participates in the overlay

SingleHost compound module

simulates a single host to connect it to a real network

Properties:

Name Value Description
display i=block/network2

Source code:

//
// Interface for overlay compound modules
//
// @author Ingmar Baumgart, Bernhard Heep, Stephan Krause
//
moduleinterface IOverlay
{
    parameters:
        @display("i=block/network2");

    gates:
        input udpIn;    // gate from the UDP layer
        input appIn;    // gate from the application
        input tcpIn;    // gate from the TCP layer
        output tcpOut;    // gate to the TCP layer
        output udpOut;    // gate to the UDP layer
        output appOut;    // gate to the application
}