Module Interface IARP

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

TODO

IARP

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/layer

Signals:

Name Type Unit
failedARPResolution IARP::Notification
initiatedARPResolution IARP::Notification
completedARPResolution IARP::Notification

Source code:

//
// TODO
//
moduleinterface IARP
{
    parameters:
        @display("i=block/layer");
        @signal[initiatedARPResolution](type=IARP::Notification);
        @signal[completedARPResolution](type=IARP::Notification);
        @signal[failedARPResolution](type=IARP::Notification);
    gates:
        input netwIn @labels(ARPPacket+Ieee802Ctrl); // incoming ARP requests and replies
        output netwOut @labels(ARPPacket+Ieee802Ctrl);  // outgoing ARP requests/replies, and datagrams with resolved next hop
}