Module Interface INetworkLayerLower

Package: inet.networklayer.contract
File: src/inet/networklayer/contract/INetworkLayer.ned

This module interface provides an abstraction for the lower interface of different network layers.

INetworkLayerLower

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
INetworkLayer module interface

This module interface provides an abstraction for the upper and lower interfaces of different network layers.

Properties:

Name Value Description
display i=block/fork

Source code:

//
// This module interface provides an abstraction for the lower interface of
// different network layers.
//
moduleinterface INetworkLayerLower
{
    parameters:
        @display("i=block/fork");
    gates:
        input ifIn[] @labels(INetworkDatagram/up);
        output ifOut[] @labels(INetworkDatagram/down);
}