Simple Module ErrorHandling

Package: inet.networklayer.ipv4
File: src/inet/networklayer/ipv4/ErrorHandling.ned

C++ definition

Handles error notifications that arrive from other protocol modules.

Errors arrive in messages; this implementation just prints a report and discards the message.

ErrorHandling

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
IPv4NetworkLayer compound module

Network layer of an IPv4 node.

Properties:

Name Value Description
display i=block/sink_s

Gates:

Name Direction Size Description
in input

Source code:

//
// Handles error notifications that arrive from other protocol modules.
//
// Errors arrive in messages; this implementation just prints a report
// and discards the message.
//
simple ErrorHandling
{
    parameters:
        @display("i=block/sink_s");
    gates:
        input in;
}