Simple Module ErrorHandling

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

C++ definition: click here

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. 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:

If a module type shows up more than once, that means it has been defined in more than one NED file.

NetworkLayer (compound module)

Network layer of an IP node.

Properties:

Name Value Description
display i=block/process_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/process_s");
    gates:
        input in;
}