Simple Module ExtInterface

Package: inet.linklayer.ext
File: src/linklayer/ext/ExtInterface.ned

C++ definition

(no description)

ExtInterface

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.

Used in compound modules:

Name Type Description
ExtRouter compound module

External router.

StandardHost compound module

IP host with SCTP, TCP, UDP layers and applications.

StandardHostWithDLDuplicatesGenerator compound module

IP host with SCTP, TCP, UDP layers and applications AND PPPInterfaceWithDLDuplicatesGenerator.

StandardHostWithDLThruputMeter compound module

IP host with SCTP, TCP, UDP layers and applications AND PPPInterfaceWithDLThruputMeter.

StandardHostWithULDropsGenerator compound module

IP host with SCTP, TCP, UDP layers and applications AND PPPInterfaceWithULDropsGenerator.

StandardHostWithULThruputMeter compound module

IP host with SCTP, TCP, UDP layers and applications AND PPPInterfaceWithULThruputMeter.

Parameters:

Name Type Default value Description
filterString string
device string
mtu int 1500

Gates:

Name Direction Size Description
netwIn input
netwOut output

Source code:

simple ExtInterface
{
    parameters:
        string filterString;
        string device;
        int mtu = default(1500);
    gates:
        input netwIn;
        output netwOut;
}